diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-08-20 18:45:55 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-08-20 18:45:55 +0000 |
commit | 71a6826b288ced54ed32c89e9d00beaa9eed6596 (patch) | |
tree | faf40f5790b547d87e21fe2d14090a2724faf72f /Makefile.in | |
parent | 1649223fb768b55a7217e9a7fa10c5e8046fca74 (diff) | |
download | httpd-71a6826b288ced54ed32c89e9d00beaa9eed6596.tar.gz |
If my grep and brain are working, that's all there is to adding error/
to the *nix build. If I'm wrong, don't shoot.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90412 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 84ea6ac63e..8a3dffc207 100644 --- a/Makefile.in +++ b/Makefile.in @@ -16,8 +16,9 @@ PROGRAM_DEPENDENCIES = \ PROGRAMS = $(PROGRAM_NAME) TARGETS = $(PROGRAMS) $(shared_build) $(other_targets) PHONY_TARGETS = $(srcdir)/buildmark.c -INSTALL_TARGETS = install-conf install-htdocs install-icons install-other \ - install-cgi install-include install-suexec install-man install-build +INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \ + install-other install-cgi install-include install-suexec install-man \ + install-build DISTCLEAN_TARGETS = include/ap_config_auto.h include/ap_config_path.h \ modules.c config.cache config.log config.status config_vars.mk @@ -71,6 +72,12 @@ install-htdocs: @test -d docs/manual && (cd docs/manual && cp -rp * $(htdocsdir)/manual) @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) +install-error: + @echo Installing error documents + @test -d $(errordir) || $(MKINSTALLDIRS) $(errordir) + @(cd docs/error && cp -rp * $(errordir)) + @(cd $(errordir) && find . -name "CVS" -print | xargs rm -rf {} \;) + install-icons: @echo Installing icons @test -d $(iconsdir) || $(MKINSTALLDIRS) $(iconsdir) |