diff options
author | Ian Lynagh <igloo@earth.li> | 2011-12-02 22:25:52 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-12-02 22:25:52 +0000 |
commit | 9fd5a2ca9b5dda5b45af57cea7c8dc6f3dab422d (patch) | |
tree | e7a645348864fdbdb291f71b3482aebef8bafab6 /ghc.mk | |
parent | 11a614ff2210eeb12c71a35f989ca312992933c1 (diff) | |
download | haskell-9fd5a2ca9b5dda5b45af57cea7c8dc6f3dab422d.tar.gz |
Remove unused install_headers and INSTALL_HEADERS
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -765,7 +765,7 @@ TAGS: TAGS_compiler # ----------------------------------------------------------------------------- # Installation -install: install_libs install_packages install_libexecs install_headers \ +install: install_libs install_packages install_libexecs \ install_libexec_scripts install_bins install_topdirs ifeq "$(HADDOCK_DOCS)" "YES" install: install_docs @@ -824,12 +824,6 @@ install_topdirs: $(INSTALL_TOPDIRS) $(call INSTALL_PROGRAM,$(INSTALL_BIN_OPTS),$$i,"$(DESTDIR)$(topdir)"); \ done -install_headers: $(INSTALL_HEADERS) - $(call INSTALL_DIR,"$(DESTDIR)$(ghcheaderdir)") - for i in $(INSTALL_HEADERS); do \ - $(call INSTALL_HEADER,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghcheaderdir)"); \ - done - install_docs: $(INSTALL_DOCS) $(call INSTALL_DIR,"$(DESTDIR)$(docdir)") ifneq "$(INSTALL_DOCS)" "" @@ -935,7 +929,6 @@ $(eval $(call bindist,.,\ $(includes_H_FILES) \ $(includes_DERIVEDCONSTANTS) \ $(includes_GHCCONSTANTS) \ - $(INSTALL_HEADERS) \ $(INSTALL_LIBEXECS) \ $(INSTALL_LIBEXEC_SCRIPTS) \ $(INSTALL_TOPDIRS) \ |