X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fsuffix.mk;h=6d2c1805ba816d2794abbcf6c03375e8d368dad3;hb=25ab6038d53ae8dabf5cf3a469096f73ae25227d;hp=02469fe96c258202c7cba4fae1a83a2781c3615f;hpb=0bffad417b3f17666c046be53d14e67c1949a64f;p=ghc-hetmet.git diff --git a/mk/suffix.mk b/mk/suffix.mk index 02469fe..6d2c180 100644 --- a/mk/suffix.mk +++ b/mk/suffix.mk @@ -25,11 +25,6 @@ #----------------------------------------------------------------------------- # Haskell Suffix Rules -# 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" - # 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)" "" @@ -38,6 +33,11 @@ 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" + $(odir_)%.$(way_)o : %.hs $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ -ohi $(basename $@).$(way_)hi @@ -56,12 +56,12 @@ $(odir_)%.$(way_)hc : %.hs $(RM) $@ $(HC) $(HC_OPTS) -C $< -o $@ -$(odir_)%.$(way_)o : %.$(way_)hc +$(odir_)%.$(way_)o : %.$(way_)hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ $(HC_POST_OPTS) -$(odir_)%.$(way_)o : %.hc +$(odir_)%.$(way_)o : %.hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ $(HC_POST_OPTS) @@ -99,7 +99,34 @@ $(odir_)%.$(way_)hi : %.$(way_)hc 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 @@ -113,6 +140,13 @@ endif # BootingViaC $(HAPPY) $(HAPPY_OPTS) $< #----------------------------------------------------------------------------- +# Alex Suffix Rules +# + +%.hs : %.x + $(ALEX) $(ALEX_OPTS) $< + +#----------------------------------------------------------------------------- # hsc2hs Suffix Rules # ifneq "$(BootingFromHc)" "YES" @@ -135,7 +169,7 @@ endif .PRECIOUS: %.gc %.hs %_stub_ffi.c %_stub_ffi.h : %.gc - $(GREENCARD) $(GC_OPTS) $< -o $@ + $(GREENCARD) $(GC_OPTS) $< %.lhs : %.gc $(GREENCARD) $(GC_OPTS) $< -o $@ @@ -146,13 +180,14 @@ endif #----------------------------------------------------------------------------- # C-related suffix rules -ifeq "$(UseGhcForCc)" "YES" +# UseGhcForCc is only relevant when not booting from HC files. +ifeq "$(UseGhcForCc) $(BootingFromHc)" "YES NO" -$(odir_)%.$(way_)o : %.$(way_)s +$(odir_)%.$(way_)o : %.c @$(RM) $@ $(HC) $(GHC_CC_OPTS) -c $< -o $@ -$(odir_)%.$(way_)o : %.c +$(odir_)%.$(way_)o : %.$(way_)s @$(RM) $@ $(HC) $(GHC_CC_OPTS) -c $< -o $@ @@ -166,14 +201,14 @@ $(odir_)%.$(way_)s : %.c else -$(odir_)%.$(way_)o : %.$(way_)s - @$(RM) $@ - $(AS) $(AS_OPTS) -o $@ $< - $(odir_)%.$(way_)o : %.c @$(RM) $@ $(CC) $(CC_OPTS) -c $< -o $@ +$(odir_)%.$(way_)o : %.$(way_)s + @$(RM) $@ + $(AS) $(AS_OPTS) -o $@ $< + $(odir_)%.$(way_)o : %.S @$(RM) $@ $(CC) $(CC_OPTS) -c $< -o $@ @@ -199,31 +234,73 @@ endif $(FLEX) -t $(FLEX_OPTS) $< > $@ #----------------------------------------------------------------------------- -# Yacc stuff - -%.tab.c %.tab.h : %.y - @$(RM) $*.tab.h $*.tab.c y.tab.c y.tab.h y.output - $(YACC) $(YACC_OPTS) $< - $(MV) y.tab.c $*.tab.c - @chmod 444 $*.tab.c - $(MV) y.tab.h $*.tab.h - @chmod 444 $*.tab.h - - -#----------------------------------------------------------------------------- # Runtest rules for calling $(HC) on a single-file Haskell program %.runtest : %.hs $(TIME) $(RUNTEST) $(HC) $(RUNTEST_OPTS) $< #----------------------------------------------------------------------------- +# DocBook XML suffix rules +# + +%.html : %.xml + $(XSLTPROC) --output $@ \ + --stringparam html.stylesheet fptools.css \ + $(XSLTPROC_OPTS) $(DIR_DOCBOOK_XSL)/html/docbook.xsl $< + cp $(FPTOOLS_CSS) . + +%-html/index.html : %.xml + $(RM) -rf $(dir $@) + $(XSLTPROC) --stringparam base.dir $(dir $@) \ + --stringparam use.id.as.filename 1 \ + --stringparam html.stylesheet fptools.css \ + $(XSLTPROC_OPTS) $(DIR_DOCBOOK_XSL)/html/chunk.xsl $< + cp $(FPTOOLS_CSS) $(dir $@) + +%-htmlhelp/index.html : %.xml + $(RM) -rf $(dir $@) + $(XSLTPROC) --stringparam base.dir $(dir $@) \ + --stringparam manifest.in.base.dir 1 \ + $(XSLTPROC_OPTS) $(DIR_DOCBOOK_XSL)/htmlhelp/htmlhelp.xsl $< + +%.fo : %.xml + $(XSLTPROC) --output $@ \ + $(XSLTPROC_OPTS) $(DIR_DOCBOOK_XSL)/fo/docbook.xsl $< + +ifeq "$(FOP)" "" +ifneq "$(PDFXMLTEX)" "" +%.pdf : %.fo + $(PDFXMLTEX) $< + if grep "LaTeX Warning: Label(s) may have changed.Rerun to get cross-references right." $(basename $@).log > /dev/null ; then \ + $(PDFXMLTEX) $< ; \ + $(PDFXMLTEX) $< ; \ + fi +endif +else +%.ps : %.fo + $(FOP) $(FOP_OPTS) -fo $< -ps $@ + +%.pdf : %.fo + $(FOP) $(FOP_OPTS) -fo $< -pdf $@ +endif + +ifneq "$(XMLTEX)" "" +%.dvi : %.fo + $(XMLTEX) $< + if grep "LaTeX Warning: Label(s) may have changed.Rerun to get cross-references right." $(basename $@).log > /dev/null ; then \ + $(XMLTEX) $< ; \ + $(XMLTEX) $< ; \ + fi +endif + +#----------------------------------------------------------------------------- # Doc processing suffix rules # # ToDo: make these more robust # %.ps : %.dvi @$(RM) $@ - dvips $< -o $@ + $(DVIPS) $< -o $@ %.tex : %.tib @$(RM) $*.tex $*.verb-t.tex @@ -305,6 +382,9 @@ endif #----------------------------------------------------------------------------- # Preprocessor suffix rule +# Note use of -P option to prevent #line pragmas being left in the CPP +# output. + % : %.pp @$(RM) $@ - $(CPP) $(CPP_OPTS) -x c $< | $(SED) -e '/^#/d' > $@ + $(CPP) $(RAWCPP_FLAGS) -P $(CPP_OPTS) -x c $< > $@