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 | ee09bc24cebbb18c2a2ed81336ab4ead600d2e94 (patch) | |
tree | e602fb7f75eaf7f044f2c9d245285dfc8e90c65a | |
parent | 2ee03af19d17c973072bbacaf7ab44a8fd8b64b1 (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 85ca02f..b7fcbc5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,9 +13,12 @@ EXTRA_DIST = inputproto.pc.in EXTRA_DIST += ChangeLog XI2proto.txt XIproto.txt MAINTAINERCLEANFILES = ChangeLog -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL |