diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-10-18 20:49:07 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-11-23 14:02:58 -0500 |
commit | e9d3ec746118f26f3d8e2fa9e37fdf9c5f0e1435 (patch) | |
tree | 9df507b5b1f2bc6ac85300d94967d6e2e68f3b11 | |
parent | 7cf0c0b7bb6592d0bb1fb6a409a65ba5da4e94a5 (diff) |
Makefile.am: add INSTALL target and clean ChangeLog DIST targets
Add INSTALL target to generate file with INSTALL_CMD #24206
ChangeLog is not required in EXTRA_DIST #24432
ChangeLog is not required in MAINTAINERCLEANFILES #24432
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 66eca97..7ea2f7a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -173,12 +173,13 @@ install-data-hook: distuninstallcheck: @: -EXTRA_DIST += ChangeLog -MAINTAINERCLEANFILES = ChangeLog -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |