diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-11-15 18:31:29 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-11-15 18:31:29 -0500 |
commit | b0efbc5f88db9805fcc603a939544dae715877d5 (patch) | |
tree | 560741c3c6c937c35fb36fbc78bbd73440381652 | |
parent | 2c4b4950e7ef98d83a93672cdc55e4c86fdcf296 (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 ec0cf19..61374d9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,9 +14,12 @@ EXTRA_DIST = randrproto.pc.in $(randrdoc_DATA) EXTRA_DIST += ChangeLog MAINTAINERCLEANFILES = ChangeLog -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |