Fixed PPC_ONLY define, added M68K_ONLY just in case.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26619 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-07-24 21:38:11 +00:00
parent 76c9eb5b42
commit 6ef4bb05f8
+4 -1
View File
@@ -13,10 +13,13 @@ AddDirectoryToHaikuImage var tmp ;
local X86_ONLY = ; local X86_ONLY = ;
local PPC_ONLY = ; local PPC_ONLY = ;
local M68K_ONLY = ;
if $(TARGET_ARCH) = x86 { if $(TARGET_ARCH) = x86 {
X86_ONLY = "" ; X86_ONLY = "" ;
} else if $(TARGET_ARCH) = ppc { } else if $(TARGET_ARCH) = ppc {
X86_ONLY = ; PPC_ONLY = "" ;
} else if $(TARGET_ARCH) = m68k {
M68K_ONLY = "" ;
} }
local GPL_ONLY = ; local GPL_ONLY = ;