Add utils/ghc-cabal/Makefile
[ghc-hetmet.git] / includes / ghc.mk
index 14a99f8..1f7ea11 100644 (file)
@@ -46,7 +46,7 @@ endif
 
 ifneq "$(BINDIST)" "YES"
 
-ifneq "$(TARGETPLATFORM)"  "$(HOSTPLATFORM)"
+ifeq "$(PORTING_HOST)" "YES"
 
 $(includes_H_CONFIG) :
        @echo "*** Cross-compiling: please copy $(includes_H_CONFIG) from the target system"
@@ -116,7 +116,7 @@ endif
 
 includes_DERIVEDCONSTANTS = includes/DerivedConstants.h
 
-ifneq "$(TARGETPLATFORM)" "$(HOSTPLATFORM)"
+ifeq "$(PORTING_HOST)" "YES"
 
 DerivedConstants.h :
        @echo "*** Cross-compiling: please copy DerivedConstants.h from the target system"
@@ -144,7 +144,7 @@ endif
 
 includes_GHCCONSTANTS = includes/GHCConstants.h
 
-ifneq "$(TARGETPLATFORM)" "$(HOSTPLATFORM)"
+ifeq "$(PORTING_HOST)" "YES"
 
 $(includes_GHCCONSTANTS) :
        @echo "*** Cross-compiling: please copy DerivedConstants.h from the target system"
@@ -186,10 +186,10 @@ install: install_includes
 
 .PHONY: install_includes
 install_includes :
-       $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)"
+       $(call INSTALL_DIR,"$(DESTDIR)$(ghcheaderdir)")
        for d in $(includes_subdirs); do \
-               $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)/$$d"; \
+               $(call INSTALL_DIR,"$(DESTDIR)$(ghcheaderdir)/$$d"); \
        done
        for i in $(subst includes/,,$(includes_H_FILES) $(includes_H_CONFIG) $(includes_H_PLATFORM)); do \
-               $(INSTALL_HEADER) $(INSTALL_OPTS) includes/$$i "$(DESTDIR)$(ghcheaderdir)/$$i"; \
+               $(call INSTALL_HEADER,$(INSTALL_OPTS),includes/$$i,"$(DESTDIR)$(ghcheaderdir)/$$i"); \
        done