diff options
author | Max Horn | 2008-09-14 22:15:13 +0000 |
---|---|---|
committer | Max Horn | 2008-09-14 22:15:13 +0000 |
commit | a7076b1f89175b9092ef3962cfe8f4b10ee5b633 (patch) | |
tree | 5f31f6d09cae215ebd8e3a321beb0e05b532c0c0 /backends | |
parent | 3c63c8688def0ae4aa0dfd7815b635a6c40ca750 (diff) | |
download | scummvm-rg350-a7076b1f89175b9092ef3962cfe8f4b10ee5b633.tar.gz scummvm-rg350-a7076b1f89175b9092ef3962cfe8f4b10ee5b633.tar.bz2 scummvm-rg350-a7076b1f89175b9092ef3962cfe8f4b10ee5b633.zip |
NDS: Replaced -I- by modern -iquote
svn-id: r34547
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/ds/arm7/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/ds/arm7/Makefile b/backends/platform/ds/arm7/Makefile index 55db7f8cad..82637845db 100644 --- a/backends/platform/ds/arm7/Makefile +++ b/backends/platform/ds/arm7/Makefile @@ -107,7 +107,7 @@ MAPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.map))) export OFILES := $(MAPFILES:.map=.o) $(RAWFILES:.raw=.o) $(PALFILES:.pal=.o) $(BINFILES:.bin=.o) $(PCXFILES:.pcx=.o)\ $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o) -export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) -I- -I$(CURDIR)/../commoninclude\ +export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) -Iquote -I$(CURDIR)/../commoninclude\ $(foreach dir,$(LIBDIRS),-I$(dir)/include) \ $(foreach dir,$(LIBDIRS),-I$(dir)/include/nds)\ -I$(CURDIR)/$(BUILD) -I$(CURDIR)/source/libcartreset |