comparison Makefile @ 1254:705b332ce933 libavformat

Move all internal -I parameters to the front of CFLAGS to avoid using external header files that happen to have the same name as internal ones.
author diego
date Thu, 17 Aug 2006 16:32:08 +0000
parents fec0a3d5408f
children faf64f0d3445
comparison
equal deleted inserted replaced
1253:f3d5e1c49875 1254:705b332ce933
2 # libavformat Makefile 2 # libavformat Makefile
3 # (c) 2000-2003 Fabrice Bellard 3 # (c) 2000-2003 Fabrice Bellard
4 # 4 #
5 include ../config.mak 5 include ../config.mak
6 6
7 CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \ 7 CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \
8 -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 \ 8 $(OPTFLAGS) -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 \
9 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE 9 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE
10 10
11 OBJS= utils.o cutils.o os_support.o allformats.o 11 OBJS= utils.o cutils.o os_support.o allformats.o
12 CPPOBJS= 12 CPPOBJS=
13 13