summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-12-29 06:54:44 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-12-29 06:54:44 +0000
commitd992a7ce4122d3714995634284b60d8b7647e6b5 (patch)
tree7c1984fd185dd9166aee61921ca5bf6bebbe0ca8 /Makefile.am
parentf79564c3231f60823069b3b3208b7903b23091f2 (diff)
downloadautoconf-d992a7ce4122d3714995634284b60d8b7647e6b5.tar.gz
* BUGS (Minor Problems): Warn about makefile limitations.
* Makefile.am: Find and update `INSTALL' in $(srcdir). * man/Makefile.am: Find and update manual pages in $(srcdir).
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index 8e4081b6..dec5bf32 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,7 +30,7 @@ EXTRA_DIST = ChangeLog.0 ChangeLog.1 ChangeLog.2 \
BUGS \
GNUmakefile Makefile.maint Makefile.cfg
-MAINTAINERCLEANFILES = INSTALL
+MAINTAINERCLEANFILES = $(srcdir)/INSTALL
## -------------------- ##
## Forwarding targets. ##
@@ -46,10 +46,10 @@ html:
## INSTALL. ##
## --------- ##
-pkgdata_DATA = INSTALL
+pkgdata_DATA = $(srcdir)/INSTALL
AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split
-INSTALL: $(top_srcdir)/doc/install.texi
- $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -o $(srcdir)/INSTALL \
+$(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi
+ $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -o $@ \
$(top_srcdir)/doc/install.texi
## maintainer-check ##