Mercurial > libavformat.hg
annotate Makefile @ 137:857a026b7e93 libavformat
first pass at an experimental 4xm demuxer
| author | tmmm |
|---|---|
| date | Sun, 25 May 2003 05:07:36 +0000 |
| parents | 5e7f9b16e0a8 |
| children | b9703b3c10b6 |
| rev | line source |
|---|---|
| 0 | 1 # |
| 2 # libavformat Makefile | |
| 3 # (c) 2000, 2001, 2002 Fabrice Bellard | |
| 4 # | |
| 5 include ../config.mak | |
| 6 | |
| 2 | 7 VPATH=$(SRC_PATH)/libavformat |
| 0 | 8 |
| 9 CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE | |
| 10 | |
| 11 OBJS= utils.o cutils.o allformats.o | |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
12 PPOBJS= |
| 0 | 13 |
| 14 # mux and demuxes | |
| 40 | 15 OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o \ |
|
47
45308962220f
added jpeg image encoder and decoder (new YUV handling routines and mjpeg codec fixes are necessary to go further)
bellard
parents:
43
diff
changeset
|
16 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \ |
| 137 | 17 yuv4mpeg.o 4xm.o |
| 40 | 18 |
| 19 ifeq ($(CONFIG_RISKY),yes) | |
| 20 OBJS+= asf.o | |
| 21 endif | |
| 22 | |
| 20 | 23 # image formats |
| 55 | 24 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o |
| 0 | 25 # file I/O |
| 26 OBJS+= avio.o aviobuf.o file.o | |
| 20 | 27 OBJS+= framehook.o |
| 0 | 28 |
| 29 ifeq ($(BUILD_STRPTIME),yes) | |
| 30 OBJS+= strptime.o | |
| 31 endif | |
| 32 | |
| 33 ifeq ($(CONFIG_VIDEO4LINUX),yes) | |
| 34 OBJS+= grab.o | |
| 35 endif | |
| 36 | |
|
27
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
37 ifeq ($(CONFIG_DV1394),yes) |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
38 OBJS+= dv1394.o |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
39 endif |
|
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
40 |
| 0 | 41 ifeq ($(CONFIG_AUDIO_OSS),yes) |
| 42 OBJS+= audio.o | |
| 43 endif | |
| 44 | |
| 45 ifeq ($(CONFIG_AUDIO_BEOS),yes) | |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
46 PPOBJS+= beosaudio.o |
| 0 | 47 endif |
| 48 | |
| 49 ifeq ($(CONFIG_NETWORK),yes) | |
| 50 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o | |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
51 # BeOS and Darwin network stuff |
|
1
464f4e8aa417
More changes to make things compile on more platforms
philipjsg
parents:
0
diff
changeset
|
52 ifeq ($(NEED_INET_ATON),yes) |
| 0 | 53 OBJS+= barpainet.o |
| 54 endif | |
| 55 endif | |
| 56 | |
| 57 ifeq ($(CONFIG_VORBIS),yes) | |
| 58 OBJS+= ogg.o | |
| 59 endif | |
| 60 | |
|
22
65433f1b2549
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
20
diff
changeset
|
61 LIB= $(LIBPREF)avformat$(LIBSUF) |
| 0 | 62 |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
63 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp) |
|
23
f6aae828c320
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
22
diff
changeset
|
64 |
| 0 | 65 all: $(LIB) |
| 66 | |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
67 $(LIB): $(OBJS) $(PPOBJS) |
| 0 | 68 rm -f $@ |
|
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
69 $(AR) rc $@ $(OBJS) $(PPOBJS) |
| 0 | 70 $(RANLIB) $@ |
| 71 | |
|
43
a23fb606308a
added basic png handling - do not remake dependencies automatically
bellard
parents:
40
diff
changeset
|
72 depend: $(SRCS) |
| 26 | 73 $(CC) -MM $(CFLAGS) $^ 1>.depend |
| 74 | |
| 0 | 75 installlib: all |
| 76 install -m 644 $(LIB) $(prefix)/lib | |
| 77 mkdir -p $(prefix)/include/ffmpeg | |
|
16
863c1133ba73
libav -> libavformat in Makefile patch by (Thomas Jarosch <tomj at simonv dot com>)
michaelni
parents:
2
diff
changeset
|
78 install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \ |
|
863c1133ba73
libav -> libavformat in Makefile patch by (Thomas Jarosch <tomj at simonv dot com>)
michaelni
parents:
2
diff
changeset
|
79 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \ |
|
863c1133ba73
libav -> libavformat in Makefile patch by (Thomas Jarosch <tomj at simonv dot com>)
michaelni
parents:
2
diff
changeset
|
80 $(SRC_PATH)/libavformat/rtspcodes.h \ |
| 0 | 81 $(prefix)/include/ffmpeg |
| 82 | |
| 83 %.o: %.c | |
| 84 $(CC) $(CFLAGS) -c -o $@ $< | |
| 85 | |
| 86 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings | |
| 87 %.o: %.cpp | |
| 88 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< | |
| 89 | |
| 90 clean: | |
| 26 | 91 rm -f *.o *.d .depend *~ *.a $(LIB) |
| 92 | |
| 93 # | |
| 94 # include dependency files if they exist | |
| 95 # | |
| 96 ifneq ($(wildcard .depend),) | |
| 97 include .depend | |
| 98 endif |
