From 7f879cccff25a01a35ca7a3447d78f3ff1e8aee3 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 11 May 2003 17:29:06 +0000 Subject: [PATCH] Rename SystemMain to BuildPlatformMain. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3209 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/boot/Jamfile | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/kernel/boot/Jamfile b/src/kernel/boot/Jamfile index aeb18d14fb..4168a9eff2 100644 --- a/src/kernel/boot/Jamfile +++ b/src/kernel/boot/Jamfile @@ -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 ;