summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-05-09 12:12:13 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-09 12:12:13 +0000
commit9b3cdc2ece9b15660a71e6078373bd60765238e6 (patch)
tree28045af0f1e49393591a8c7dd664cf953f2151da /common.mak
parent83da2c6f268acc04c61b76629055764dc462c4a3 (diff)
Remove -I flags pointing to local paths, they are no longer necessary.
Originally committed as revision 13100 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak3
1 files changed, 1 insertions, 2 deletions
diff --git a/common.mak b/common.mak
index 58ff839bdc..88a816efed 100644
--- a/common.mak
+++ b/common.mak
@@ -12,8 +12,7 @@ vpath %.S $(SRC_DIR)
ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale
CFLAGS = -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
- -D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) \
- $(addprefix -I$(SRC_PATH)/lib,$(ALLFFLIBS)) $(OPTFLAGS)
+ -D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) $(OPTFLAGS)
%.o: %.c
$(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<