Rename SystemMain to BuildPlatformMain.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3209 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2003-05-11 17:29:06 +00:00
parent 5dc4e1ef10
commit 7f879cccff

View File

@ -1,22 +1,22 @@
SubDir OBOS_TOP src kernel boot ; SubDir OBOS_TOP src kernel boot ;
SetupIncludes ; #SetupIncludes ;
oldccflags = $(CCFLAGS) ; #oldccflags = $(CCFLAGS) ;
{ #{
CCFLAGS = ; # CCFLAGS = ;
local x ; # local x ;
for x in $(CCFLAGS) { # for x in $(CCFLAGS) {
if $(x) != --nostdinc { # if $(x) != --nostdinc {
CCFLAGS += $(x) ; # CCFLAGS += $(x) ;
} # }
} # }
} #}
SystemMain bootmaker : bootmaker.c ; BuildPlatformMain bootmaker : bootmaker.c ;
SystemMain bin2h : bin2h.c ; BuildPlatformMain bin2h : bin2h.c ;
SystemMain bin2asm : bin2asm.c ; BuildPlatformMain bin2asm : bin2asm.c ;
SystemMain makeflop : makeflop.c ; BuildPlatformMain makeflop : makeflop.c ;
CCFLAGS = $(oldccflags) ; #CCFLAGS = $(oldccflags) ;
SubInclude OBOS_TOP src kernel boot arch ; SubInclude OBOS_TOP src kernel boot arch ;