X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fpaths.mk;h=1bac9cf3e6d9ef35ad5b301ee12ec662e587d075;hb=003bc7cbbec233a047ce899b0ec6ebd2816752ed;hp=7c282a32e16ca091c91df80b2328c3601c307c7c;hpb=98f8adeebfe4229ca78d5569190ed6c211468d2b;p=ghc-hetmet.git diff --git a/mk/paths.mk b/mk/paths.mk index 7c282a3..1bac9cf 100644 --- a/mk/paths.mk +++ b/mk/paths.mk @@ -85,8 +85,19 @@ INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier # OBJS - object files (possibly prefixed). # # PROG - name of final executable -# -# + +# We attempt to automatically devine the list of sources $(SRCS) to +# compile by looking in the current directory. This is complicated by +# the fact that a .hsc file gives rise to a .hs file (which needs to +# be automatically included in $(SRCS)), but the .hs file might +# already be present in the current directory and we don't want to +# compile it twice. + +# So we figure out the sources in three stages: first figure out +# what's in the current directory (this is $(PRE_SRCS)). Then figure +# out all the "derived" sources (eg. A.hsc generates A.hs and +# A_hsc.c), and finally put all these together and remove duplicates +# (GNU make's handy sort function does the duplicate removing). # # BOOT_SRCS: list of machine generated Haskell modules. # HS_SRCS: list of Haskell modules you want to compile. @@ -97,18 +108,29 @@ INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier # (caveat: assuming no funny use of -hisuf and that # file name and module name match) -HSC_SRCS = $(wildcard *.hsc) -SRCS = $(wildcard *.lhs *.hs *.c *.prl *.lprl *.lit *.verb) \ - $(patsubst %.hsc,%.hs,$(HSC_SRCS)) +PRE_SRCS = $(wildcard *.lhs *.hs *.c *.prl *.lprl *.lit *.verb *.hsc) + +DERIVED_SRCS = $(patsubst %.hsc, %.hs %_hsc.c %_hsc.h, \ + $(filter %.hsc, $(PRE_SRCS) )) + +# EXCLUDED_SRCS can be set in the Makefile, otherwise it defaults to empty. +EXCLUDED_DERIVED_SRCS = $(patsubst %.hsc,%.hs %_hsc.c, \ + $(filter %.hsc, $(EXCLUDED_SRCS))) +CLOSED_EXCLUDED_SRCS = $(sort $(EXCLUDED_SRCS) $(EXCLUDED_DERIVED_SRCS)) + +SRCS = $(filter-out $(CLOSED_EXCLUDED_SRCS), \ + $(sort $(PRE_SRCS) $(HSC_DERIVED_SRCS))) + +HS_SRCS = $(filter %.lhs %.hs %.hc,$(sort $(SRCS) $(BOOT_SRCS))) +HS_OBJS = $(addsuffix .$(way_)o,$(basename $(HS_SRCS))) +HS_HCS = $(addsuffix .$(way_)hc,$(basename $(HS_SRCS))) +HS_SS = $(addsuffix .$(way_)s,$(basename $(HS_SRCS))) +HS_IFACES = $(addsuffix .$(way_)hi,$(basename $(HS_SRCS))) -HS_SRCS=$(filter %.lhs %.hs %.hc,$(sort $(SRCS) $(BOOT_SRCS))) -HS_OBJS=$(addsuffix .$(way_)o,$(basename $(HS_SRCS))) -HS_HCS=$(addsuffix .$(way_)hc,$(basename $(HS_SRCS))) -HS_SS=$(addsuffix .$(way_)s,$(basename $(HS_SRCS))) -HS_IFACES=$(addsuffix .$(way_)hi,$(basename $(HS_SRCS))) +HSC_C_OBJS = $(patsubst %_hsc.c,%_hsc.o,$(SRCS)) -C_SRCS=$(filter %.c,$(SRCS)) -C_OBJS=$(addsuffix .$(way_)o,$(basename $(C_SRCS))) +C_SRCS = $(filter %.c,$(SRCS)) +C_OBJS = $(addsuffix .$(way_)o,$(basename $(C_SRCS))) # SCRIPT_SRCS: list of raw script files (in literate form) # SCRIPT_OBJS: de-litted scripts @@ -138,7 +160,7 @@ else MKDEPENDHS_SRCS= endif -MKDEPENDC_SRCS=$(C_SRCS) +MKDEPENDC_SRCS=$(C_SRCS) #------------------------------------------------------------------ # @@ -168,9 +190,7 @@ TAGS_C_SRCS=$(C_SRCS) MOSTLY_CLEAN_FILES += $(HS_OBJS) $(C_OBJS) CLEAN_FILES += $(HS_PROG) $(C_PROG) $(SCRIPT_PROG) $(SCRIPT_LINK) \ $(PROG) $(LIBRARY) $(HS_IFACES) $(HS_SS) a.out \ - $(patsubst %.hsc,%.hs,$(HSC_SRCS)) \ - $(patsubst %.hsc,%_hsc.c,$(HSC_SRCS)) \ - $(patsubst %.hsc,%_hsc.h,$(HSC_SRCS)) + $(DERIVED_SRCS) # Don't clean the .hc files if we're bootstrapping ifneq "$(BootingFromHc)" "YES"