X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=mk%2Fbootstrap.mk;h=9b8a79a5af541d97c03e84cfde22a20a0184e654;hb=27d13cb655147c28eeed0f06cac6fc40c5d778aa;hp=e712ed54e331e76a50cdb17854d0a06574ca2642;hpb=5f6133521c3660f36add0890f0dc4174c5e5af68;p=ghc-hetmet.git diff --git a/mk/bootstrap.mk b/mk/bootstrap.mk index e712ed5..9b8a79a 100644 --- a/mk/bootstrap.mk +++ b/mk/bootstrap.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: bootstrap.mk,v 1.11 2001/05/25 10:53:59 simonmar Exp $ +# $Id: bootstrap.mk,v 1.12 2001/07/23 22:33:53 ken Exp $ # # Makefile rules for booting from .hc files without a driver. # @@ -118,6 +118,17 @@ endif # ----------------------------------------------------------------------------- # suffix rules for building a .o from a .hc file. +ifeq "$(BootingFromUnregisterisedHc)" "YES" + +# without mangling + +%.o : %.hc + $(CC) -x c $< -o $@ -c -O $(HC_BOOT_CC_OPTS) -I. `echo $(patsubst -monly-%-regs, -DSTOLEN_X86_REGS=%, $(filter -monly-%-regs, $($*_HC_OPTS))) | sed 's/^$$/-DSTOLEN_X86_REGS=4/'` + +else + +# with mangling + %.raw_s : %.hc $(CC) -x c $< -o $@ -S -O $(HC_BOOT_CC_OPTS) -I. `echo $(patsubst -monly-%-regs, -DSTOLEN_X86_REGS=%, $(filter -monly-%-regs, $($*_HC_OPTS))) | sed 's/^$$/-DSTOLEN_X86_REGS=4/'` @@ -126,3 +137,5 @@ endif %.o : %.s $(CC) -c -o $@ $< + +endif