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:03:03 -0500 |
commit | 678b24833af98f32364a2a8138b0d746aa627127 (patch) | |
tree | 027c650e485b448f0a14f100b8d59e1b593c4784 | |
parent | 69b746d80bf2094ef622a51aa469434422f81b2d (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 b5c7350..22f1f86 100644 --- a/Makefile.am +++ b/Makefile.am @@ -331,12 +331,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 |