From: simonmar Date: Tue, 22 May 2001 10:34:07 +0000 (+0000) Subject: [project @ 2001-05-22 10:34:07 by simonmar] X-Git-Tag: Approximately_9120_patches~1908 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=c532ff608cf445768bc122c355579563c7cb7ed8 [project @ 2001-05-22 10:34:07 by simonmar] Add a rule to build an hc-file tar bundle. --- 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