diff options
author | Chet Ramey <chet.ramey@case.edu> | 2013-03-26 20:51:58 -0400 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2013-03-26 20:51:58 -0400 |
commit | c677e9e0a2472dd40c14dd60b1df3b957c3de43b (patch) | |
tree | 6bfbd180c762f4b717ae10f88674e874dc68e9d9 /Makefile.in | |
parent | c7e43312f9b44c8aeb42b99152cc3e5dcac89a46 (diff) | |
download | bash-c677e9e0a2472dd40c14dd60b1df3b957c3de43b.tar.gz |
commit bash-20130308 snapshot
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index a59e8db2..a6d8e660 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,6 +26,8 @@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_VERSION = @PACKAGE_VERSION@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ + # Include some boilerplate Gnu makefile definitions. prefix = @prefix@ @@ -40,6 +42,8 @@ includedir = @includedir@ datadir = @datadir@ localedir = @localedir@ +docdir = @docdir@ + mandir = @mandir@ manpfx = man @@ -534,6 +538,10 @@ CREATED_MAKEFILES = Makefile builtins/Makefile doc/Makefile \ examples/loadables/perl/Makefile support/Makefile \ lib/intl/Makefile po/Makefile po/Makefile.in +OTHER_DOCS = $(srcdir)/CHANGES $(srcdir)/COMPAT $(srcdir)/NEWS $(srcdir)/POSIX \ + $(srcdir)/RBASH $(srcdir)/README +OTHER_INSTALLED_DOCS = CHANGES COMPAT NEWS POSIX RBASH README + # Keep GNU Make from exporting the entire environment for small machines. .NOEXPORT: @@ -739,6 +747,7 @@ info dvi ps: force force: +# unused TAGS: $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) etags $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) @@ -751,11 +760,13 @@ installdirs: @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(bindir) @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(man1dir) @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(infodir) + @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(docdir) -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) install: .made installdirs $(INSTALL_PROGRAM) $(INSTALLMODE) $(Program) $(DESTDIR)$(bindir)/$(Program) $(INSTALL_SCRIPT) $(INSTALLMODE2) bashbug $(DESTDIR)$(bindir)/bashbug + $(INSTALL_DATA) $(OTHER_DOCS) $(docdir) -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \ man1dir=$(man1dir) man1ext=$(man1ext) \ man3dir=$(man3dir) man3ext=$(man3ext) \ @@ -770,6 +781,7 @@ install-strip: uninstall: .made $(RM) $(DESTDIR)$(bindir)/$(Program) $(DESTDIR)$(bindir)/bashbug + -( cd $(DESTDIR)$(docdir) && ${RM} ${OTHER_INSTALLED_DOCS} ) -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \ man1dir=$(man1dir) man1ext=$(man1ext) \ man3dir=$(man3dir) man3ext=$(man3ext) \ |