summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsof <unknown>2002-07-30 17:35:59 +0000
committersof <unknown>2002-07-30 17:35:59 +0000
commit8e49caf6ab14c9249ee662ba569bc6b7bf2319f1 (patch)
tree7616ec8821b9e434610d2d2ab75777bcbb8ff9f1 /Makefile
parent5b016a3f9e10a7714453913a97273ca3d180d372 (diff)
downloadhaskell-8e49caf6ab14c9249ee662ba569bc6b7bf2319f1.tar.gz
[project @ 2002-07-30 17:35:59 by sof]
wibble
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e2095f0941..4b5f467579 100644
--- a/Makefile
+++ b/Makefile
@@ -259,10 +259,13 @@ SRC_DIST_FILES += \
mk/boilerplate.mk mk/config.h.in mk/config.mk.in mk/opts.mk \
mk/paths.mk mk/package.mk mk/suffix.mk mk/target.mk
+# Just provide a subset.
+GHC_SRC_DIST_DIRS= glafp-utils ghc libraries hslibs
+
dist dist-manifest dist-package :: project-check
# clean the tree first, leaving certain extra files in place (eg. configure)
-dist :: distclean
+#dist :: distclean
dist ::
-rm -rf $(SRC_DIST_DIR)
@@ -299,7 +302,7 @@ hc-file-bundle : project-check
$(ProjectNameShort)-$(ProjectVersion)/libraries \
$(ProjectNameShort)-$(ProjectVersion)/hslibs \
\( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
- @for f in `$(FIND) $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler $(ProjectNameShort)-$(ProjectVersion)/ghc/driver $(ProjectNameShort)-$(ProjectVersion)/libraries $(ProjectNameShort)-$(ProjectVersion)/hslibs -name "*.hsc" -print` ""; do \
+ for f in `$(FIND) $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler $(ProjectNameShort)-$(ProjectVersion)/ghc/driver $(ProjectNameShort)-$(ProjectVersion)/libraries $(ProjectNameShort)-$(ProjectVersion)/hslibs -name "*.hsc" -print` ""; do \
if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
fi; \