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 | e52cb6ef1baa65c1688b3160727214efae57b0e2 (patch) | |
tree | 14a298d48c9a60f90816fc0a53aed52b89da05fc | |
parent | bfaecf2a80ef1bcbfa6243fdb1bfc2e335f86a10 (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 029c971..c078d8a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -49,9 +49,12 @@ EXTRA_DIST = xextproto.pc.in geproto.txt EXTRA_DIST += ChangeLog MAINTAINERCLEANFILES = ChangeLog -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |