summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
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)