comparison libmpdemux/Makefile @ 16165:a9f7eff9e437

Support new static libavcodec (depends on libavutil).
author al
date Mon, 01 Aug 2005 20:16:56 +0000
parents 087142ef3a2d
children 56a5f69e9b35
comparison
equal deleted inserted replaced
16164:ec76d55a25f1 16165:a9f7eff9e437
104 muxer_avi.c \ 104 muxer_avi.c \
105 muxer_mpeg.c \ 105 muxer_mpeg.c \
106 muxer_rawaudio.c \ 106 muxer_rawaudio.c \
107 muxer_rawvideo.c \ 107 muxer_rawvideo.c \
108 108
109 LIBAV_INC =
110 ifeq ($(CONFIG_LIBAVUTIL),yes)
111 LIBAV_INC += -I../libavutil
112 endif
113 ifeq ($(CONFIG_LIBAVCODEC),yes)
114 LIBAV_INC += -I../libavcodec
115 endif
109 ifeq ($(CONFIG_LIBAVFORMAT),yes) 116 ifeq ($(CONFIG_LIBAVFORMAT),yes)
110 LIBAV_INC = -I../libavcodec -I../libavformat 117 LIBAV_INC += -I../libavformat
111 SRCS += muxer_lavf.c 118 SRCS += muxer_lavf.c
112 endif 119 endif
113 120
114 ifeq ($(MPLAYER_NETWORK),yes) 121 ifeq ($(MPLAYER_NETWORK),yes)
115 SRCS += asf_streaming.c \ 122 SRCS += asf_streaming.c \