diff options
author | Ian Lynagh <igloo@earth.li> | 2007-08-28 12:49:18 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-08-28 12:49:18 +0000 |
commit | 8ef5881f88269f067d2a3bd9d0d9943d16814a8d (patch) | |
tree | 328126481a4dd3f80b333c98935c0ffd693b25f0 /includes/Makefile | |
parent | 18e4fea8fcd804d0f164d06aec9f96bb9435a338 (diff) | |
download | haskell-8ef5881f88269f067d2a3bd9d0d9943d16814a8d.tar.gz |
Use INSTALL_HEADERS in includes/ rather than abusing INSTALL_DATAS
Diffstat (limited to 'includes/Makefile')
-rw-r--r-- | includes/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/includes/Makefile b/includes/Makefile index 32ab5f8c49..bebe2eb93f 100644 --- a/includes/Makefile +++ b/includes/Makefile @@ -171,19 +171,16 @@ endif # # Install all header files # -# Hackily set the install destination here: -# # Note: we keep per-platform copies of all the include files # (ditto for interface files). This is not *really* needed, but # it gives (perhaps) a cleaner binary dist structure..might change. # -override datadir:=$(libdir)/include -INSTALL_DATAS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) +INSTALL_HEADERS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) binary-dist: - $(INSTALL_DIR) $(BIN_DIST_DIR)/includes - $(INSTALL_DATA) Makefile $(BIN_DIST_DIR)/includes/ - $(INSTALL_DATA) $(INSTALL_DATAS) $(BIN_DIST_DIR)/includes/ + $(INSTALL_DIR) $(BIN_DIST_DIR)/includes + $(INSTALL_DATA) Makefile $(BIN_DIST_DIR)/includes/ + $(INSTALL_DATA) $(INSTALL_HEADERS) $(BIN_DIST_DIR)/includes/ # # `make clean' settings: |