diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-10-18 20:49:06 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-11-23 14:02:58 -0500 |
commit | 29546f83de7a0b7aecd5cc3ab8be08ea5fa4fb2c (patch) | |
tree | b58788a3ed830420632a161c47b37f1fb9b01c38 | |
parent | 9dab5599dc97d4cfddb66bc5dde3cc85dbd96c5c (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 68de228..bacfaa3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -215,12 +215,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 |