Lexing and parsing for "foreign import prim"
[ghc-hetmet.git] / Makefile
index 28328b3..69c419c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -32,6 +32,11 @@ else
 default : all
        @:
 
+# For help, type 'make help'
+.PHONY: help
+help :
+       @cat MAKEHELP
+
 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
 -include mk/config.mk
 else
@@ -44,7 +49,7 @@ endif
 include mk/custom-settings.mk
 
 # No need to update makefiles for these targets:
-REALGOALS=$(filter-out bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show,$(MAKECMDGOALS))
+REALGOALS=$(filter-out bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show help,$(MAKECMDGOALS))
 
 # NB. not the same as saying '%: ...', which doesn't do the right thing:
 # it does nothing if we specify a target that already exists.
@@ -68,9 +73,14 @@ endif
        $(MAKE) -r --no-print-directory -f ghc.mk $@
 
 binary-dist:
+ifeq "$(mingw32_TARGET_OS)" "1"
+       $(MAKE) -r --no-print-directory -f ghc.mk windows-binary-dist
+       $(MAKE) -r --no-print-directory -f ghc.mk windows-installer
+else
        rm -f bindist-list
        $(MAKE) -r --no-print-directory -f ghc.mk bindist BINDIST=YES
        $(MAKE) -r --no-print-directory -f ghc.mk binary-dist
+endif
 
 clean distclean maintainer-clean:
        $(MAKE) -r --no-print-directory -f ghc.mk $@ CLEANING=YES