Mercurial > libavcodec.hg
annotate Makefile @ 1247:26827e6ae6dd libavcodec
* link libfaad when needed
| author | kabi |
|---|---|
| date | Mon, 12 May 2003 12:32:33 +0000 |
| parents | cd88870c4560 |
| children | 802614404398 |
| rev | line source |
|---|---|
| 395 | 1 # |
| 2 # libavcodec Makefile | |
| 429 | 3 # (c) 2000, 2001, 2002 Fabrice Bellard |
| 395 | 4 # |
| 2 | 5 include ../config.mak |
| 6 | |
| 395 | 7 VPATH=$(SRC_PATH)/libavcodec |
| 8 | |
| 429 | 9 # NOTE: -I.. is needed to include config.h |
|
571
0a9259126188
largefile support patch by Roy Sigurd Karlsbakk <roy at karlsbakk.net>
michaelni
parents:
539
diff
changeset
|
10 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
| 0 | 11 LDFLAGS= -g |
| 12 | |
|
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
13 OBJS= common.o utils.o mem.o allcodecs.o \ |
| 1042 | 14 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
| 23 | 15 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ |
| 1042 | 16 motion_est.o imgconvert.o imgresample.o \ |
| 17 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \ | |
| 784 | 18 ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \ |
| 1224 | 19 fft.o mdct.o mace.o huffyuv.o cyuv.o opts.o raw.o h264.o golomb.o \ |
| 20 vp3.o | |
| 2 | 21 ASM_OBJS= |
| 0 | 22 |
| 1042 | 23 # codecs which are patented in some non free countries like the us |
| 24 ifeq ($(CONFIG_RISKY),yes) | |
| 1190 | 25 OBJS+= h263.o msmpeg4.o h263dec.o svq1.o rv10.o wmadec.o indeo3.o |
| 1042 | 26 endif |
| 27 | |
| 338 | 28 # currently using liba52 for ac3 decoding |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
29 ifeq ($(CONFIG_AC3),yes) |
| 338 | 30 OBJS+= a52dec.o |
| 31 | |
| 32 # using builtin liba52 or runtime linked liba52.so.0 | |
| 429 | 33 ifneq ($(CONFIG_A52BIN),yes) |
| 338 | 34 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
| 1194 | 35 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
36 endif |
| 429 | 37 endif |
| 0 | 38 |
| 1245 | 39 ifeq ($(CONFIG_FAAD),yes) |
| 40 OBJS+= faad.o | |
| 1247 | 41 ifeq ($(CONFIG_FAADBIN),yes) |
| 42 # no libs needed | |
| 43 else | |
| 44 EXTRALIBS += -lfaad | |
| 45 endif | |
| 1245 | 46 endif |
| 47 | |
| 1069 | 48 ifeq ($(CONFIG_PP),yes) |
| 49 ifeq ($(SHARED_PP),yes) | |
| 50 EXTRALIBS += -lpostproc | |
| 51 else | |
| 52 # LIBS += libpostproc/libpostproc.a ... should be fixed | |
| 53 OBJS += libpostproc/postprocess.o | |
| 54 endif | |
| 55 endif | |
| 56 | |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
57 ifeq ($(CONFIG_MP3LAME),yes) |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
58 OBJS += mp3lameaudio.o |
| 348 | 59 EXTRALIBS += -lmp3lame |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
60 endif |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
61 |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
62 ifeq ($(CONFIG_VORBIS),yes) |
|
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
63 OBJS += oggvorbis.o |
|
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
64 EXTRALIBS += -lvorbis -lvorbisenc |
|
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
65 endif |
|
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
66 |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
67 ifeq ($(TARGET_GPROF),yes) |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
68 CFLAGS+=-p |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
69 LDFLAGS+=-p |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
70 endif |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
71 |
| 0 | 72 # i386 mmx specific stuff |
| 2 | 73 ifeq ($(TARGET_MMX),yes) |
| 74 | 74 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
| 32 | 75 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
| 338 | 76 i386/idct_mmx.o i386/motion_est_mmx.o \ |
|
973
e2c119417470
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents:
866
diff
changeset
|
77 i386/simple_idct_mmx.o i386/fft_sse.o |
|
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
78 ifdef TARGET_BUILTIN_VECTOR |
|
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
79 i386/fft_sse.o: CFLAGS+= -msse |
|
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
80 endif |
| 0 | 81 endif |
| 82 | |
| 62 | 83 # armv4l specific stuff |
| 84 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
| 85 ASM_OBJS += armv4l/jrevdct_arm.o | |
| 730 | 86 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o |
| 62 | 87 endif |
| 88 | |
| 88 | 89 # sun mediaLib specific stuff |
| 90 # currently only works when libavcodec is used in mplayer | |
| 91 ifeq ($(HAVE_MLIB),yes) | |
| 92 OBJS += mlib/dsputil_mlib.o | |
| 93 CFLAGS += $(MLIB_INC) | |
| 94 endif | |
| 95 | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
96 # alpha specific stuff |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
97 ifeq ($(TARGET_ARCH_ALPHA),yes) |
|
744
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by M?ns
mellum
parents:
730
diff
changeset
|
98 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \ |
|
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by M?ns
mellum
parents:
730
diff
changeset
|
99 alpha/simple_idct_alpha.o alpha/motion_est_alpha.o |
|
705
107a56aa74f5
Add Alpha assembly for pix_abs16x16. Optimized for pca56, no large win
mellum
parents:
689
diff
changeset
|
100 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
|
683
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
101 CFLAGS += -fforce-addr -freduce-all-givs |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
102 endif |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
103 |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
104 ifeq ($(TARGET_ARCH_POWERPC),yes) |
|
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
105 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o |
|
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
106 endif |
|
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
107 |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
108 ifeq ($(TARGET_MMI),yes) |
|
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
109 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
110 endif |
|
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
111 |
|
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
112 ifeq ($(TARGET_ALTIVEC),yes) |
|
1033
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
113 ifeq ($(TARGET_OS),Darwin) |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
114 CFLAGS += -faltivec |
|
1033
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
115 else |
|
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
116 CFLAGS += -maltivec -mabi=altivec |
|
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
117 endif |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
973
diff
changeset
|
118 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \ |
|
995
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
994
diff
changeset
|
119 ppc/fft_altivec.o ppc/gmc_altivec.o |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
120 endif |
|
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
121 |
|
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
122 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
| 429 | 123 OBJS := $(OBJS) $(ASM_OBJS) |
| 2 | 124 |
|
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
125 LIB= $(LIBPREF)avcodec$(LIBSUF) |
| 136 | 126 ifeq ($(BUILD_SHARED),yes) |
|
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
127 SLIB= $(SLIBPREF)avcodec$(SLIBSUF) |
| 136 | 128 endif |
| 784 | 129 TESTS= imgresample-test dct-test motion-test fft-test |
| 0 | 130 |
| 136 | 131 all: $(LIB) $(SLIB) |
| 429 | 132 |
| 43 | 133 tests: apiexample cpuid_test $(TESTS) |
| 0 | 134 |
| 1046 | 135 $(LIB): $(OBJS) |
| 0 | 136 rm -f $@ |
| 640 | 137 $(AR) rc $@ $(OBJS) |
| 138 $(RANLIB) $@ | |
| 0 | 139 |
| 1046 | 140 $(SLIB): $(OBJS) |
|
572
5a06c3552026
BeOS patches by "shatty" <shatty at myrealbox.com>
michaelni
parents:
571
diff
changeset
|
141 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) |
| 429 | 142 |
| 0 | 143 dsputil.o: dsputil.c dsputil.h |
| 144 | |
| 1069 | 145 libpostproc/libpostproc.a: |
| 146 $(MAKE) -C libpostproc | |
| 147 | |
| 0 | 148 %.o: %.c |
| 149 $(CC) $(CFLAGS) -c -o $@ $< | |
| 150 | |
| 62 | 151 %.o: %.S |
| 152 $(CC) $(CFLAGS) -c -o $@ $< | |
| 153 | |
|
683
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
154 # motion_est_alpha uses the MVI extension, which is not available with |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
155 # -mcpu=ev4 (default) or ev5/ev56. Thus, force -mcpu=pca56 in those |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
156 # cases. |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
157 ifeq ($(TARGET_ARCH_ALPHA),yes) |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
158 alpha/motion_est_alpha.o: alpha/motion_est_alpha.c |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
159 cpu=`echo "$(CFLAGS)" | sed -n 's,.*-mcpu=\([a-zA-Z0-9]*\).*,\1,p'`; \ |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
160 case x"$$cpu" in x|xev[45]*) newcpu=pca56;; *) newcpu=$$cpu;; esac; \ |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
161 echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\ |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
162 $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $< |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
163 endif |
|
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
164 |
| 1046 | 165 depend: $(SRCS) |
|
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
166 $(CC) -MM $(CFLAGS) $^ 1>.depend |
|
1010
3c110cba4b29
- removed nonsense *.d dependancy stuff, there was already a better 'make dep' support in it
arpi_esp
parents:
1005
diff
changeset
|
167 |
| 2 | 168 dep: depend |
| 169 | |
| 0 | 170 clean: |
|
1005
c331a07c0be2
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
995
diff
changeset
|
171 rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
| 62 | 172 armv4l/*.o armv4l/*~ \ |
| 88 | 173 mlib/*.o mlib/*~ \ |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
174 alpha/*.o alpha/*~ \ |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
175 ppc/*.o ppc/*~ \ |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
176 ps2/*.o ps2/*~ \ |
| 338 | 177 liba52/*.o liba52/*~ \ |
| 178 apiexample $(TESTS) | |
| 1074 | 179 $(MAKE) -C libpostproc clean |
| 0 | 180 |
|
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
181 distclean: clean |
| 2 | 182 rm -f Makefile.bak .depend |
| 183 | |
| 0 | 184 # api example program |
| 185 apiexample: apiexample.c $(LIB) | |
| 645 | 186 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm |
| 0 | 187 |
| 43 | 188 # cpuid test |
| 189 cpuid_test: i386/cputest.c | |
| 190 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
| 191 | |
| 0 | 192 # testing progs |
| 193 | |
| 194 imgresample-test: imgresample.c | |
| 644 | 195 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
| 0 | 196 |
| 979 | 197 dct-test: dct-test.o fdctref.o $(LIB) |
|
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
198 $(CC) -o $@ $^ -lm |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
199 |
| 74 | 200 motion-test: motion_test.o $(LIB) |
| 644 | 201 $(CC) -o $@ $^ -lm |
| 74 | 202 |
|
973
e2c119417470
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents:
866
diff
changeset
|
203 fft-test: fft-test.o $(LIB) |
| 784 | 204 $(CC) -o $@ $^ -lm |
| 205 | |
| 136 | 206 install: all |
| 207 ifeq ($(BUILD_SHARED),yes) | |
|
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
208 install -d $(prefix)/lib |
| 429 | 209 install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so |
|
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
210 ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so |
|
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
211 ldconfig || true |
| 429 | 212 mkdir -p $(prefix)/include/ffmpeg |
|
727
c816782e3161
Fix for source dir != build dir. Patch provided by M?ns Rullg?rd.
mellum
parents:
724
diff
changeset
|
213 install -m 644 $(VPATH)/avcodec.h $(prefix)/include/ffmpeg/avcodec.h |
|
c816782e3161
Fix for source dir != build dir. Patch provided by M?ns Rullg?rd.
mellum
parents:
724
diff
changeset
|
214 install -m 644 $(VPATH)/common.h $(prefix)/include/ffmpeg/common.h |
| 136 | 215 endif |
|
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
216 |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
217 installlib: all |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
218 install -m 644 $(LIB) $(prefix)/lib |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
219 mkdir -p $(prefix)/include/ffmpeg |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
220 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h $(SRC_PATH)/libavcodec/common.h \ |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
221 $(prefix)/include/ffmpeg |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
222 |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
223 # |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
224 # include dependency files if they exist |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
225 # |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
226 ifneq ($(wildcard .depend),) |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
227 include .depend |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
228 endif |
