summaryrefslogtreecommitdiffstats
path: root/misc/pascal/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-02-05 18:12:08 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-02-05 18:12:08 +0000
commit2a88f2a4e64f46ddfad5bb757162a63226571887 (patch)
tree580cf964a33d721e5f2e68e02f0e582b1ce2e560 /misc/pascal/nuttx
parentd42942b80ee6e2a6925ee62fa593a75d6a87e79e (diff)
Last change not compatible with ARM
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@629 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'misc/pascal/nuttx')
-rw-r--r--misc/pascal/nuttx/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/pascal/nuttx/Makefile b/misc/pascal/nuttx/Makefile
index 92491d4c8b..83ea149f93 100644
--- a/misc/pascal/nuttx/Makefile
+++ b/misc/pascal/nuttx/Makefile
@@ -38,10 +38,11 @@
COMPILER = ${shell basename $(CC)}
ifeq ($(COMPILER),zneocc.exe)
USRINCLUDES = -usrinc:'.;$(WTOPDIR)\pcode\include;$(WTOPDIR)\pcode\insn\include'
+INCLUDES = $(ARCHSTDINCLUDES) $(USRINCLUDES)
else
USRINCLUDES = -I$(TOPDIR)/pcode/include -I$(TOPDIR)/pcode/insn/include
+INCLUDES = $(ARCHINCLUDES) $(USRINCLUDES)
endif
-INCLUDES = $(ARCHSTDINCLUDES) $(USRINCLUDES)
CFLAGS = $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(INCLUDES) $(ARCHDEFINES)
include insn/prun/Make.defs