From c532ff608cf445768bc122c355579563c7cb7ed8 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 22 May 2001 10:34:07 +0000 Subject: [PATCH] [project @ 2001-05-22 10:34:07 by simonmar] Add a rule to build an hc-file tar bundle. --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Makefile b/Makefile index c96a0c1..01d02ff 100644 --- a/Makefile +++ b/Makefile @@ -288,6 +288,19 @@ dist-package-zip :: $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME)-src.zip $(SRC_DIST_PATHS) # ----------------------------------------------------------------------------- +# HC file bundles + +hc-file-bundle : project-check + $(RM) $(ProjectNameShort)-$(ProjectVersion) + $(LN_S) . $(ProjectNameShort)-$(ProjectVersion) + find $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler \ + $(ProjectNameShort)-$(ProjectVersion)/ghc/driver \ + $(ProjectNameShort)-$(ProjectVersion)/ghc/lib \ + $(ProjectNameShort)-$(ProjectVersion)/hslibs \ + -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" > hc-files-to-go + tar czf $(ProjectNameShort)-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar `cat hc-files-to-go` + +# ----------------------------------------------------------------------------- DIST_CLEAN_FILES += config.cache config.status -- 1.7.10.4