Skip to content
Snippets Groups Projects
Commit 2674edcf authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Follow GHC build system changes

parent f9d91c52
No related branches found
No related tags found
No related merge requests found
......@@ -40,15 +40,15 @@ endif
.PHONY: install_utils/haddock_html
install_utils/haddock_html:
$(INSTALL_DIR) "$(DESTDIR)$(docdir)/html"
$(call INSTALL_DIR,"$(DESTDIR)$(docdir)/html")
"$(CP)" -R utils/haddock/html "$(DESTDIR)$(docdir)/html"
.PHONY: install_utils/haddock_data
install_utils/haddock_data:
$(foreach i,$(sort $(dir $(utils/haddock_dist_DATA_FILES))), \
$(call make-command,$(INSTALL_DIR) "$(DESTDIR)$(ghclibdir)/$i"))
$(call make-command,$(call INSTALL_DIR,"$(DESTDIR)$(ghclibdir)/$i")))
$(foreach i,$(utils/haddock_dist_DATA_FILES), \
$(call make-command,$(INSTALL_DATA) $(INSTALL_OPTS) utils/haddock/$i "$(DESTDIR)$(ghclibdir)/$(dir $i)"))
$(call make-command,$(call INSTALL_DATA,$(INSTALL_OPTS),utils/haddock/$i,"$(DESTDIR)$(ghclibdir)/$(dir $i)")))
.PHONY: install_utils/haddock_link
install_utils/haddock_link:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment