Mercurial > mplayer.hg
comparison Makefile @ 16165:a9f7eff9e437
Support new static libavcodec (depends on libavutil).
author | al |
---|---|
date | Mon, 01 Aug 2005 20:16:56 +0000 |
parents | 087142ef3a2d |
children | ca701176fe03 |
comparison
equal
deleted
inserted
replaced
16164:ec76d55a25f1 | 16165:a9f7eff9e437 |
---|---|
5 # * DVD support | 5 # * DVD support |
6 | 6 |
7 include config.mak | 7 include config.mak |
8 | 8 |
9 PRG_CFG = codec-cfg | 9 PRG_CFG = codec-cfg |
10 | |
11 LIBAV_INC = | |
12 ifeq ($(CONFIG_LIBAVUTIL),yes) | |
13 LIBAV_INC += -I./libavutil | |
14 endif | |
15 ifeq ($(CONFIG_LIBAVCODEC),yes) | |
16 LIBAV_INC += -I./libavcodec | |
17 endif | |
10 | 18 |
11 # Do not strip the binaries at installation | 19 # Do not strip the binaries at installation |
12 ifeq ($(STRIPBINARIES),yes) | 20 ifeq ($(STRIPBINARIES),yes) |
13 INSTALLSTRIP = -s | 21 INSTALLSTRIP = -s |
14 endif | 22 endif |
127 $(FREETYPE_INC) \ | 135 $(FREETYPE_INC) \ |
128 $(FRIBIDI_INC) \ | 136 $(FRIBIDI_INC) \ |
129 $(SDL_INC) \ | 137 $(SDL_INC) \ |
130 $(X11_INC) \ | 138 $(X11_INC) \ |
131 $(XVID_INC) \ | 139 $(XVID_INC) \ |
140 $(LIBAV_INC) \ | |
132 | 141 |
133 #CFLAGS += -Wall | 142 #CFLAGS += -Wall |
134 | 143 |
135 ifeq ($(TOOLAME),yes) | 144 ifeq ($(TOOLAME),yes) |
136 CFLAGS += $(TOOLAME_EXTRAFLAGS) | 145 CFLAGS += $(TOOLAME_EXTRAFLAGS) |
289 loader/dshow/libDS_Filter.a: | 298 loader/dshow/libDS_Filter.a: |
290 $(MAKE) -C loader/dshow | 299 $(MAKE) -C loader/dshow |
291 | 300 |
292 loader/dmo/libDMO_Filter.a: | 301 loader/dmo/libDMO_Filter.a: |
293 $(MAKE) -C loader/dmo | 302 $(MAKE) -C loader/dmo |
303 | |
304 libavutil/libavutil.a: | |
305 $(MAKE) -C libavutil LIBPREF=lib LIBSUF=.a | |
294 | 306 |
295 libavcodec/libavcodec.a: | 307 libavcodec/libavcodec.a: |
296 $(MAKE) -C libavcodec LIBPREF=lib LIBSUF=.a | 308 $(MAKE) -C libavcodec LIBPREF=lib LIBSUF=.a |
297 | 309 |
298 libavformat/libavformat.a: | 310 libavformat/libavformat.a: |