diff options
author | Jim Meyering <jim@meyering.net> | 1995-05-21 12:27:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-05-21 12:27:45 +0000 |
commit | a42221d0519c0d89564ce7a84fff6d219b017e33 (patch) | |
tree | c901369bcab10209b02473738fb631492f7608ba /doc | |
parent | f76df4e1792186318e767f847719fabbe01c897b (diff) | |
download | coreutils-a42221d0519c0d89564ce7a84fff6d219b017e33.tar.xz |
(install-exec, install-exec): New targets. From Karl Berry.
(maintainer-clean): Renamed from realclean per GNU Standards.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index 512a3defd..82a941692 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -56,7 +56,9 @@ fileutils.dvi: fileutils.texi version.texi texinfo.tex installdirs: $(srcdir)/../mkinstalldirs $(infodir) -install: all installdirs +install: install-exec install-data +install-exec: +install-data: all installdirs cd $(srcdir) && for file in fileutils.info; do \ $(INSTALL_DATA) $$file $(infodir)/$$file; \ done @@ -93,8 +95,8 @@ subdir = doc Makefile: ../config.status Makefile.in cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status -.PHONY: all check clean dist distclean dvi info install \ -installdirs maintainer-clean mostlyclean texclean uninstall +.PHONY: all check clean dist distclean dvi info install install-data \ +install-exec installdirs maintainer-clean mostlyclean texclean uninstall # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |