X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=mk%2Fsuffix.mk;h=55637e3bcab1f03b98a984e21f5b3d879489ffb3;hp=ad238ed9135a6a363d87bbc814dc54cd570c6ee9;hb=c76c69c5b62f1ca4fa52d75b0dfbd37b7eddbb09;hpb=41b8c26ecd239f7cff41d92ea483dad91a1912d2 diff --git a/mk/suffix.mk b/mk/suffix.mk index ad238ed..55637e3 100644 --- a/mk/suffix.mk +++ b/mk/suffix.mk @@ -22,15 +22,11 @@ .DELETE_ON_ERROR: -# This line prevents GNU make from deleting any intermediate targets: - -.SECONDARY: - #----------------------------------------------------------------------------- # 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. +# different versions from the same sources. See compiler/Makefile. ifneq "$(odir)" "" odir_ = $(odir)/ else @@ -138,10 +134,10 @@ else $(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_)%.s : $(odir_)%.raw_s + $(MANGLER) $< $@ $(patsubst -monly-%-regs, %, $(filter -monly-%-regs, $($*_HC_OPTS))) -$(odir_)%.o : %.s +$(odir_)%.o : $(odir_)%.s $(CC) -c -o $@ $< endif # not BootingFromUnregisterisedHc @@ -169,7 +165,7 @@ endif # BootingFromHc # ifneq "$(BootingFromHc)" "YES" %_hsc.c %_hsc.h %.hs : %.hsc - $(HSC2HS) $(HSC2HS_OPTS) $< + $(HSC2HS_INPLACE) $(HSC2HS_OPTS) $< @touch $(patsubst %.hsc,%_hsc.c,$<) endif @@ -277,7 +273,15 @@ endif $(XSLTPROC_OPTS) \ $(DIR_DOCBOOK_XSL)/htmlhelp/htmlhelp.xsl $< -# TODO: Detect hhc via autoconf +%-htmlhelp2/collection.HxC : %.xml + $(RM) -rf $(dir $@) + $(XSLTPROC) --stringparam base.dir $(dir $@) \ + --stringparam use.id.as.filename 1 \ + --stringparam manifest.in.base.dir 1 \ + $(XSLTPROC_OPTS) \ + $(DIR_DOCBOOK_XSL)/htmlhelp2/htmlhelp2.xsl $< + +# TODO: Detect hhc & Hxcomp via autoconf # # Two obstacles here: # @@ -290,6 +294,9 @@ endif %.chm : %-htmlhelp/index.html ( cd $(dir $<) && if hhc htmlhelp.hhp ; then false ; else true ; fi ) || true +%.HxS : %-htmlhelp2/collection.HxC + ( cd $(dir $<) && if Hxcomp -p collection.HxC -o ../$@ ; then false ; else true ; fi ) + %.fo : %.xml $(XSLTPROC) --output $@ \ --stringparam draft.mode no \