Browse Source

Add specific directory options for sparc and sparc64

git-svn-id: trunk@36386 -
pierre 8 years ago
parent
commit
8a16ad775e
1 changed files with 8 additions and 0 deletions
  1. 8 0
      ide/compiler/Makefile.fpc

+ 8 - 0
ide/compiler/Makefile.fpc

@@ -67,6 +67,14 @@ endif
 ifeq ($(PPC_TARGET),mipsel)
 ifeq ($(PPC_TARGET),mipsel)
 override FPCOPT+= -Fu$(COMPILERDIR)/mips
 override FPCOPT+= -Fu$(COMPILERDIR)/mips
 endif
 endif
+# sparc specific
+ifeq ($(PPC_TARGET),sparc)
+override FPCOPT+= -Fu$(COMPILERDIR)/sparcgen -Fi$(COMPILERDIR)/sparcgen
+endif
+# sparc64 specific
+ifeq ($(PPC_TARGET),sparc64)
+override FPCOPT+= -Fu$(COMPILERDIR)/sparcgen -Fi$(COMPILERDIR)/sparcgen
+endif
 
 
 
 
 [rules]
 [rules]