view libmpdemux/Makefile @ 22151:db9f2e48c710

Fix libnut build failure. Use CONFIG_LIBNUT like ffmpeg's configure, instead of LIBNUT. Patch by Clemens Ladisch % cladisch A fastmail P net %
author gpoirier
date Wed, 07 Feb 2007 09:00:11 +0000
parents 8c63104755fc
children 56aac8642cf6
line wrap: on
line source


include ../config.mak

LIBNAME = libmpdemux.a
ifeq ($(MENCODER),yes)
LIBNAME2 = libmpmux.a
endif

SRCS  = asfheader.c \
        aviheader.c \
        aviprint.c \
        demuxer.c \
        demux_aac.c \
        demux_asf.c \
        demux_audio.c \
        demux_avi.c \
        demux_demuxers.c \
        demux_film.c \
        demux_fli.c \
        demux_lmlm4.c \
        demux_mf.c \
        demux_mkv.c ebml.c \
        demux_mov.c \
        demux_mpg.c \
        demux_nsv.c \
        demux_nuv.c \
        demux_pva.c \
        demux_rawaudio.c \
        demux_rawvideo.c \
        demux_realaud.c \
        demux_real.c \
        demux_roq.c \
        demux_smjpeg.c \
        demux_ts.c \
        demux_ty.c \
        demux_ty_osd.c \
        demux_viv.c \
        demux_vqf.c \
        demux_y4m.c \
        extension.c \
        mf.c \
        mp3_hdr.c \
        mpeg_hdr.c \
        mpeg_packetizer.c \
        parse_es.c \
        parse_mp4.c \
        video.c \
        yuv4mpeg.c \
        yuv4mpeg_ratio.c \

SRCS-$(CONFIG_LIBAVFORMAT)      += demux_lavf.c
SRCS-$(CONFIG_LIBAVFORMAT_SO)   += demux_lavf.c
SRCS-$(GIF)                     += demux_gif.c
SRCS-$(LIBDV)                   += demux_rawdv.c
SRCS-$(CONFIG_LIBNUT)           += demux_nut.c
SRCS-$(LIBVORBIS)               += demux_ogg.c
SRCS-$(MUSEPACK)                += demux_mpc.c
SRCS-$(STREAMING_LIVE555)       += demux_rtp.cpp demux_rtp_codec.cpp
SRCS-$(WIN32DLL)                += demux_avs.c
SRCS-$(XMMS_PLUGINS)            += demux_xmms.c

SRCS2 = muxer.c \
        muxer_avi.c \
        muxer_mpeg.c \
        muxer_rawaudio.c \
        muxer_rawvideo.c \

SRCS2-$(CONFIG_LIBAVFORMAT)     += muxer_lavf.c
SRCS2-$(CONFIG_LIBAVFORMAT_SO)  += muxer_lavf.c

CFLAGS = -I../stream -I../loader

CFLAGS-$(CONFIG_LIBAVUTIL)      += -I../libavutil
CFLAGS-$(CONFIG_LIBAVCODEC)     += -I../libavcodec
CFLAGS-$(CONFIG_LIBAVFORMAT)    += -I../libavformat

CXXFLAGS  = $(subst -Wdeclaration-after-statement,,$(CFLAGS)) -D__STDC_LIMIT_MACROS

include ../mpcommon.mak