diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-11-15 18:31:28 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-11-15 18:31:28 -0500 |
commit | 77eefcd20b38392a75e7c71a7e182dcfcaf3e7c3 (patch) | |
tree | ca237c34199a0e31d6809780af55b8affbbf95a6 | |
parent | 2ddb34caa23048083232e592300cfee7b8c2f04f (diff) |
Makefile.am: INSTALL file is missing or incorrect #24206
The standard GNU file on building/installing tarball is copied
using the XORG_INSTALL macro contained in XORG_DEFAULT_OPTIONS
Add INSTALL target
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index d26a4a5..731ccc5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,9 +10,12 @@ EXTRA_DIST += ChangeLog MAINTAINERCLEANFILES = ChangeLog -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |