[project @ 2001-06-06 12:04:46 by simonmar]
[ghc-hetmet.git] / mk / paths.mk
index 7c282a3..1bac9cf 100644 (file)
@@ -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"