diff options
author | Ian Lynagh <igloo@earth.li> | 2007-06-01 19:06:59 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-06-01 19:06:59 +0000 |
commit | 79b5a2cb4b9ed5fe41a05fa2ec98bd1f83971daf (patch) | |
tree | 0c416a30476cbc2ebeaa8b3ada902587f123f0e5 /utils/hp2ps | |
parent | 430453c5131592b6147a80202dc5f7fbe3f3d5fd (diff) | |
download | haskell-79b5a2cb4b9ed5fe41a05fa2ec98bd1f83971daf.tar.gz |
Fix bindist creation
Bindists should now work again, when doing "make install" at least.
"make in-place" is probably still broken.
Diffstat (limited to 'utils/hp2ps')
-rw-r--r-- | utils/hp2ps/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/hp2ps/Makefile b/utils/hp2ps/Makefile index 18cb05b1bd..7952bbb961 100644 --- a/utils/hp2ps/Makefile +++ b/utils/hp2ps/Makefile @@ -11,4 +11,9 @@ LIBS = $(LIBM) CLEAN_FILES += $(C_OBJS) $(C_PROG) +binary-dist: + $(INSTALL_DIR) $(BIN_DIST_DIR)/utils/hp2ps + $(INSTALL_DATA) Makefile $(BIN_DIST_DIR)/utils/hp2ps/ + $(INSTALL_PROGRAM) $(C_PROG) $(BIN_DIST_DIR)/utils/hp2ps/ + include $(TOP)/mk/target.mk |