comparison Makefile @ 22724:bf2711ae4cbe

Move -I. to the front of CFLAGS, works around problems with headers from other projects having the same names as MPlayer ones.
author diego
date Mon, 19 Mar 2007 00:10:38 +0000
parents a80891080c9e
children 12ae53050d94
comparison
equal deleted inserted replaced
22723:a80891080c9e 22724:bf2711ae4cbe
4 # * some minor problems with make clean and distclean were corrected 4 # * some minor problems with make clean and distclean were corrected
5 # * DVD support 5 # * DVD support
6 6
7 include config.mak 7 include config.mak
8 8
9 CFLAGS = $(OPTFLAGS) -I. 9 CFLAGS = -I. $(OPTFLAGS)
10 10
11 CFLAGS-$(CONFIG_LIBAVUTIL) += -I./libavutil 11 CFLAGS-$(CONFIG_LIBAVUTIL) += -I./libavutil
12 CFLAGS-$(CONFIG_LIBAVCODEC) += -I./libavcodec 12 CFLAGS-$(CONFIG_LIBAVCODEC) += -I./libavcodec
13 CFLAGS += $(CFLAGS-yes) 13 CFLAGS += $(CFLAGS-yes)
14 14