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 ;
SetupIncludes ;
oldccflags = $(CCFLAGS) ;
{
CCFLAGS = ;
local x ;
for x in $(CCFLAGS) {
if $(x) != --nostdinc {
CCFLAGS += $(x) ;
}
}
}
#SetupIncludes ;
#oldccflags = $(CCFLAGS) ;
#{
# CCFLAGS = ;
# local x ;
# for x in $(CCFLAGS) {
# if $(x) != --nostdinc {
# CCFLAGS += $(x) ;
# }
# }
#}
SystemMain bootmaker : bootmaker.c ;
SystemMain bin2h : bin2h.c ;
SystemMain bin2asm : bin2asm.c ;
SystemMain makeflop : makeflop.c ;
BuildPlatformMain bootmaker : bootmaker.c ;
BuildPlatformMain bin2h : bin2h.c ;
BuildPlatformMain bin2asm : bin2asm.c ;
BuildPlatformMain makeflop : makeflop.c ;
CCFLAGS = $(oldccflags) ;
#CCFLAGS = $(oldccflags) ;
SubInclude OBOS_TOP src kernel boot arch ;