Mercurial > libavcodec.hg
annotate Makefile @ 489:b9fcdf9f4420 libavcodec
added installlib target to install static libraries and includes
| author | bellard |
|---|---|
| date | Tue, 11 Jun 2002 13:39:47 +0000 |
| parents | f8bbc8976247 |
| children | cab79946302f |
| 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 |
| 10 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. | |
| 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 \ |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
14 mpegvideo.o h263.o jrevdct.o jfdctfst.o \ |
| 23 | 15 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ |
| 0 | 16 motion_est.o imgconvert.o imgresample.o msmpeg4.o \ |
| 329 | 17 mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \ |
| 18 ratecontrol.o | |
| 2 | 19 ASM_OBJS= |
| 0 | 20 |
| 338 | 21 # 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
|
22 ifeq ($(CONFIG_AC3),yes) |
| 338 | 23 OBJS+= a52dec.o |
| 24 | |
| 25 # using builtin liba52 or runtime linked liba52.so.0 | |
| 429 | 26 ifneq ($(CONFIG_A52BIN),yes) |
| 338 | 27 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
| 28 liba52/imdct.o liba52/parse.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
|
29 endif |
| 429 | 30 endif |
| 0 | 31 |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
32 ifeq ($(CONFIG_MP3LAME),yes) |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
33 OBJS += mp3lameaudio.o |
| 348 | 34 EXTRALIBS += -lmp3lame |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
35 endif |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
36 |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
37 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
|
38 CFLAGS+=-p |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
39 LDFLAGS+=-p |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
40 endif |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
41 |
| 0 | 42 # i386 mmx specific stuff |
| 2 | 43 ifeq ($(TARGET_MMX),yes) |
| 74 | 44 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
| 32 | 45 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
| 338 | 46 i386/idct_mmx.o i386/motion_est_mmx.o \ |
|
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
138
diff
changeset
|
47 i386/simple_idct_mmx.o |
| 0 | 48 endif |
| 49 | |
| 62 | 50 # armv4l specific stuff |
| 51 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
| 52 ASM_OBJS += armv4l/jrevdct_arm.o | |
| 53 OBJS += armv4l/dsputil_arm.o | |
| 54 endif | |
| 55 | |
| 88 | 56 # sun mediaLib specific stuff |
| 57 # currently only works when libavcodec is used in mplayer | |
| 58 ifeq ($(HAVE_MLIB),yes) | |
| 59 OBJS += mlib/dsputil_mlib.o | |
| 60 CFLAGS += $(MLIB_INC) | |
| 61 endif | |
| 62 | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
63 # alpha specific stuff |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
64 ifeq ($(TARGET_ARCH_ALPHA),yes) |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
65 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
66 CFLAGS += -Wa,-mpca56 |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
67 endif |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
68 |
| 429 | 69 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) |
| 70 OBJS := $(OBJS) $(ASM_OBJS) | |
| 2 | 71 |
| 0 | 72 LIB= libavcodec.a |
| 136 | 73 ifeq ($(BUILD_SHARED),yes) |
| 429 | 74 SLIB= libavcodec.so |
| 136 | 75 endif |
| 74 | 76 TESTS= imgresample-test dct-test motion-test |
| 0 | 77 |
| 136 | 78 all: $(LIB) $(SLIB) |
| 429 | 79 |
| 43 | 80 tests: apiexample cpuid_test $(TESTS) |
| 0 | 81 |
| 429 | 82 $(LIB): $(OBJS) |
| 0 | 83 rm -f $@ |
| 429 | 84 $(AR) rc $@ $(OBJS) |
| 0 | 85 |
| 429 | 86 $(SLIB): $(OBJS) |
| 87 $(CC) -shared -o $@ $(OBJS) $(EXTRALIBS) | |
| 88 | |
| 0 | 89 dsputil.o: dsputil.c dsputil.h |
| 90 | |
| 91 %.o: %.c | |
| 92 $(CC) $(CFLAGS) -c -o $@ $< | |
| 93 | |
| 62 | 94 %.o: %.S |
| 95 $(CC) $(CFLAGS) -c -o $@ $< | |
| 96 | |
| 2 | 97 # depend only used by mplayer now |
| 98 dep: depend | |
| 99 | |
| 100 depend: | |
| 101 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
| 102 | |
| 0 | 103 clean: |
| 343 | 104 rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
| 62 | 105 armv4l/*.o armv4l/*~ \ |
| 88 | 106 mlib/*.o mlib/*~ \ |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
107 alpha/*.o alpha/*~ \ |
| 338 | 108 liba52/*.o liba52/*~ \ |
| 109 apiexample $(TESTS) | |
| 0 | 110 |
|
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
111 distclean: clean |
| 2 | 112 rm -f Makefile.bak .depend |
| 113 | |
| 0 | 114 # api example program |
| 115 apiexample: apiexample.c $(LIB) | |
| 116 $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm | |
| 117 | |
| 43 | 118 # cpuid test |
| 119 cpuid_test: i386/cputest.c | |
| 120 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
| 121 | |
| 0 | 122 # testing progs |
| 123 | |
| 124 imgresample-test: imgresample.c | |
| 125 $(CC) $(CFLAGS) -DTEST -o $@ $^ | |
| 126 | |
| 74 | 127 dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o \ |
| 32 | 128 fdctref.o jrevdct.o i386/idct_mmx.o |
| 0 | 129 $(CC) -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
|
130 |
| 74 | 131 motion-test: motion_test.o $(LIB) |
| 132 $(CC) -o $@ $^ | |
| 133 | |
| 136 | 134 install: all |
| 135 ifeq ($(BUILD_SHARED),yes) | |
| 429 | 136 install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so |
| 137 ln -sf $(prefix)/lib/libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so | |
| 136 | 138 ldconfig |
| 429 | 139 mkdir -p $(prefix)/include/ffmpeg |
| 140 install -m 644 avcodec.h $(prefix)/include/ffmpeg/avcodec.h | |
| 141 install -m 644 common.h $(prefix)/include/ffmpeg/common.h | |
| 136 | 142 endif |
|
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
143 |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
144 installlib: all |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
145 install -m 644 $(LIB) $(prefix)/lib |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
146 mkdir -p $(prefix)/include/ffmpeg |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
147 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
|
148 $(prefix)/include/ffmpeg |
|
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
149 |
|
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
|
150 # |
|
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
|
151 # 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
|
152 # |
|
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
|
153 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
|
154 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
|
155 endif |
