From 003bc7cbbec233a047ce899b0ec6ebd2816752ed Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 6 Jun 2001 12:04:46 +0000 Subject: [PATCH 1/1] [project @ 2001-06-06 12:04:46 by simonmar] Further improve the $(SRCS) story, allowing you to exclude certain sources (and all of their derived components) by setting $(EXCLUDED_SRCS). --- mk/paths.mk | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/mk/paths.mk b/mk/paths.mk index 5fae5b7..1bac9cf 100644 --- a/mk/paths.mk +++ b/mk/paths.mk @@ -94,10 +94,10 @@ INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier # compile it twice. # So we figure out the sources in three stages: first figure out -# what's in the current directory. 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). +# 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. @@ -110,12 +110,16 @@ INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier PRE_SRCS = $(wildcard *.lhs *.hs *.c *.prl *.lprl *.lit *.verb *.hsc) -HSC_SRCS = $(filter %.hsc, $(PRE_SRCS)) -HSC_HS_SRCS = $(patsubst %.hsc,%.hs,$(HSC_SRCS)) -HSC_C_SRCS = $(patsubst %.hsc,%_hsc.c,$(HSC_SRCS)) -HSC_C_OBJS = $(patsubst %.hsc,%_hsc.o,$(HSC_SRCS)) +DERIVED_SRCS = $(patsubst %.hsc, %.hs %_hsc.c %_hsc.h, \ + $(filter %.hsc, $(PRE_SRCS) )) -SRCS = $(sort $(PRE_SRCS) $(HSC_HS_SRCS) $(HSC_C_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))) @@ -123,6 +127,8 @@ 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))) @@ -184,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" -- 1.7.10.4