diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-05-25 22:34:32 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-05-25 22:34:32 +0000 |
commit | 19720f15fd30a0f81c56989e1faf4ff6058793f3 (patch) | |
tree | 3eb493441d59cc5bd7cf4a771836c9759e7b8478 /libav/Makefile | |
parent | 17269bdfcdb79679f6b92024d1228e876b799a63 (diff) | |
download | ffmpeg-19720f15fd30a0f81c56989e1faf4ff6058793f3.tar.gz |
license/copyright change
Originally committed as revision 593 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/Makefile')
-rw-r--r-- | libav/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/libav/Makefile b/libav/Makefile index ecb91e142f..a0a5008912 100644 --- a/libav/Makefile +++ b/libav/Makefile @@ -1,7 +1,10 @@ +# +# libavformat Makefile +# (c) 2000, 2001, 2002 Fabrice Bellard +# include ../config.mak VPATH=$(SRC_PATH)/libav -PWD=$(shell pwd) CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H @@ -13,15 +16,19 @@ OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o asf.o \ # file I/O OBJS+= avio.o aviobuf.o file.o -ifeq ($(CONFIG_GRAB),yes) -OBJS+= grab.o audio.o +ifeq ($(CONFIG_VIDEO4LINUX),yes) +OBJS+= grab.o endif -ifneq ($(CONFIG_WIN32),yes) +ifeq ($(CONFIG_AUDIO_OSS),yes) +OBJS+= audio.o +endif + +ifeq ($(CONFIG_NETWORK),yes) OBJS+= udp.o http.o endif -LIB= libav.a +LIB= libavformat.a all: $(LIB) @@ -34,4 +41,3 @@ $(LIB): $(OBJS) clean: rm -f *.o *~ *.a - |