From 4cc281d9d970b0b004f20ee76cae427f374bd082 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Sat, 18 May 2002 23:01:20 +0000 Subject: [PATCH] added VPATH support for multiple dir compilation Originally committed as revision 521 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index ff36708aef..a38994ee41 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -1,6 +1,12 @@ +# +# libavcodec Makefile +# (c) 2000, 2001, 2002 Gerard Lantau +# include ../config.mak -CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I. -I.. +VPATH=$(SRC_PATH)/libavcodec + +CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH) LDFLAGS= -g OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \