X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fsuffix.mk;h=b3bc8fcd53eac86669dc68040b1cc6257125f162;hb=8504ba456d9048a97672161819b859bcf7beee93;hp=6a0a44541c863f2c8f495a7edd11c49d2a4f06dc;hpb=69540b16367f4d841f0721988f34fb59daf84305;p=ghc-hetmet.git diff --git a/mk/suffix.mk b/mk/suffix.mk index 6a0a445..b3bc8fc 100644 --- a/mk/suffix.mk +++ b/mk/suffix.mk @@ -16,59 +16,62 @@ .SUFFIXES: -# However, if $(way) is set then we have to define $(way_) and $(_way) -# from it in the obvious fashion. -# This must be done here (or earlier), but not in target.mk with the other -# way management, because the pattern rules in this file take a snapshot of -# the value of $(way_) and $(_way), and it's no good setting them later! - -ifneq "$(way)" "" - way_ := $(way)_ - _way := _$(way) -endif +# This declaration tells GNU make to delete the target if it has +# changed and the command which created it exited with a non-zero exit +# code. + +.DELETE_ON_ERROR: #----------------------------------------------------------------------------- # Haskell Suffix Rules +# The $(odir) support is for building GHC, where we need to build three +# different versions from the same sources. See ghc/compiler/Makefile. +ifneq "$(odir)" "" +odir_ = $(odir)/ +else +odir_ = +endif + # Turn off all the Haskell suffix rules if we're booting from .hc # files. The file bootstrap.mk contains alternative suffix rules in # this case. ifneq "$(BootingFromHc)" "YES" -%.$(way_)o : %.hs +$(odir_)%.$(way_)o : %.hs $(HC_PRE_OPTS) - $(HC) $(HC_OPTS) -c $< -o $@ + $(HC) $(HC_OPTS) -c $< -o $@ -ohi $(basename $@).$(way_)hi $(HC_POST_OPTS) -%.$(way_)o : %.lhs +$(odir_)%.$(way_)o : %.lhs $(HC_PRE_OPTS) - $(HC) $(HC_OPTS) -c $< -o $@ + $(HC) $(HC_OPTS) -c $< -o $@ -ohi $(basename $@).$(way_)hi $(HC_POST_OPTS) -%.$(way_)hc : %.lhs +$(odir_)%.$(way_)hc : %.lhs $(RM) $@ $(HC) $(HC_OPTS) -C $< -o $@ -%.$(way_)hc : %.hs +$(odir_)%.$(way_)hc : %.hs $(RM) $@ $(HC) $(HC_OPTS) -C $< -o $@ -%.$(way_)o : %.$(way_)hc +$(odir_)%.$(way_)o : %.$(way_)hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ $(HC_POST_OPTS) -%.$(way_)o : %.hc +$(odir_)%.$(way_)o : %.hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ $(HC_POST_OPTS) -%.$(way_)s : %.$(way_)hc +$(odir_)%.$(way_)s : %.$(way_)hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -S $< -o $@ $(HC_POST_OPTS) -%.$(way_)hc : %.lhc +$(odir_)%.$(way_)hc : %.lhc @$(RM) $@ $(UNLIT) $< $@ @chmod 444 $@ @@ -89,14 +92,41 @@ ifneq "$(BootingFromHc)" "YES" else exit 0 ; \ fi -%.$(way_)hi : %.$(way_)hc +$(odir_)%.$(way_)hi : %.$(way_)hc @if [ ! -f $@ ] ; then \ echo Panic! $< exists, but $@ does not.; \ exit 1; \ else exit 0 ; \ fi -endif # BootingViaC +else # BootingFromHc + +# ----------------------------------------------------------------------------- +# suffix rules for building a .o from a .hc file in bootstrap mode. + +ifeq "$(BootingFromUnregisterisedHc)" "YES" + +# without mangling + +$(odir_)%.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 + +$(odir_)%.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/'` + +$(odir_)%.s : %.raw_s + $(GHC_MANGLER) $< $@ $(patsubst -monly-%-regs, %, $(filter -monly-%-regs, $($*_HC_OPTS))) + +$(odir_)%.o : %.s + $(CC) -c -o $@ $< + +endif # not BootingFromUnregisterisedHc + +endif # BootingFromHc #----------------------------------------------------------------------------- # Happy Suffix Rules @@ -131,8 +161,8 @@ endif .PRECIOUS: %.gc -%.hs : %.gc - $(GREENCARD) $(GC_OPTS) $< -o $@ +%.hs %_stub_ffi.c %_stub_ffi.h : %.gc + $(GREENCARD) $(GC_OPTS) $< %.lhs : %.gc $(GREENCARD) $(GC_OPTS) $< -o $@ @@ -143,39 +173,40 @@ endif #----------------------------------------------------------------------------- # C-related suffix rules -ifeq "$(UseGhcForCc)" "YES" +# UseGhcForCc is only relevant when not booting from HC files. +ifeq "$(UseGhcForCc) $(BootingFromHc)" "YES NO" -%.$(way_)o : %.$(way_)s +$(odir_)%.$(way_)o : %.c @$(RM) $@ $(HC) $(GHC_CC_OPTS) -c $< -o $@ -%.$(way_)o : %.c +$(odir_)%.$(way_)o : %.$(way_)s @$(RM) $@ $(HC) $(GHC_CC_OPTS) -c $< -o $@ -%.$(way_)o : %.S +$(odir_)%.$(way_)o : %.S @$(RM) $@ $(HC) $(GHC_CC_OPTS) -c $< -o $@ -%.$(way_)s : %.c +$(odir_)%.$(way_)s : %.c @$(RM) $@ $(HC) $(GHC_CC_OPTS) -S $< -o $@ else -%.$(way_)o : %.$(way_)s +$(odir_)%.$(way_)o : %.c @$(RM) $@ - $(AS) $(AS_OPTS) -o $@ $< || ( $(RM) $@ && exit 1 ) + $(CC) $(CC_OPTS) -c $< -o $@ -%.$(way_)o : %.c +$(odir_)%.$(way_)o : %.$(way_)s @$(RM) $@ - $(CC) $(CC_OPTS) -c $< -o $@ + $(AS) $(AS_OPTS) -o $@ $< -%.$(way_)o : %.S +$(odir_)%.$(way_)o : %.S @$(RM) $@ $(CC) $(CC_OPTS) -c $< -o $@ -%.$(way_)s : %.c +$(odir_)%.$(way_)s : %.c @$(RM) $@ $(CC) $(CC_OPTS) -S $< -o $@ @@ -190,10 +221,10 @@ endif %.c : %.flex @$(RM) $@ - $(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 ) + $(FLEX) -t $(FLEX_OPTS) $< > $@ %.c : %.lex @$(RM) $@ - $(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 ) + $(FLEX) -t $(FLEX_OPTS) $< > $@ #----------------------------------------------------------------------------- # Yacc stuff @@ -303,5 +334,5 @@ endif # Preprocessor suffix rule % : %.pp - rm -f $@ - $(CPP) $(CPP_OPTS) -x c $< | $(SED) -e '/^#/d' > $@ + @$(RM) $@ + $(CPP) $(RAWCPP_FLAGS) $(CPP_OPTS) -x c $< | $(SED) -e '/^#/d' > $@