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 | b99b992915dd19914c9464d9a96278d2cc2ceeeb (patch) | |
tree | 93278f8cb76fc4ea49e72f6929aaf113fc4b5d00 | |
parent | caea0fd5a966a74465d965ecab89f4829dced157 (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 96c6b26..e52cc14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,10 +36,13 @@ EXTRA_DIST = xproto.pc.in ChangeLog CLEANFILES=ChangeLog -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |