From: Ryan Bloom Date: Thu, 27 Apr 2000 18:14:47 +0000 (+0000) Subject: Install the support binaries. X-Git-Tag: APACHE_2_0_ALPHA_3~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73139ac1f98b9664e044f5cbe71ae3cff9462546;p=thirdparty%2Fapache%2Fhttpd.git Install the support binaries. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85060 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index f3851570869..a888103f915 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,7 +22,7 @@ PROGRAMS = $(PROGRAM_NAME) targets = $(PROGRAMS) phony_targets = buildmark.c install_targets = install-conf install-htdocs install-icons install-other \ - install-cgi install-include + install-cgi install-include install-support DISTCLEANFILES = apaci include/config_auto.h modules.c include $(top_srcdir)/build/rules.mk @@ -62,6 +62,16 @@ install-cgi: @echo Installing CGIs @test -d $(cgidir) || $(mkinstalldirs) $(cgidir) @cp -rp $(srcdir)/../cgi-bin/* $(cgidir) + +install-support: + @echo Installing Support Binaries + @test -d $(bindir) || $(mkinstalldirs) $(bindir) + @cp -rp $(srcdir)/support/httpd.exp $(bindir) + @cp -rp $(srcdir)/support/htpasswd $(bindir) + @cp -rp $(srcdir)/support/htdigest $(bindir) + @cp -rp $(srcdir)/support/rotatelogs $(bindir) + @cp -rp $(srcdir)/support/logresolve $(bindir) + @cp -rp $(srcdir)/support/ab $(bindir) install-other: @test -d $(logdir) || $(mkinstalldirs) $(logdir)