Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 4840 invoked by uid 500); 27 Apr 2000 18:14:48 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 4829 invoked by uid 500); 27 Apr 2000 18:14:48 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 27 Apr 2000 18:14:47 -0000 Message-ID: <20000427181447.4824.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src Makefile.in rbb 00/04/27 11:14:47 Modified: src Makefile.in Log: Install the support binaries. Revision Changes Path 1.12 +11 -1 apache-2.0/src/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apache-2.0/src/Makefile.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Makefile.in 2000/04/27 04:21:20 1.11 +++ Makefile.in 2000/04/27 18:14:47 1.12 @@ -22,7 +22,7 @@ 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 @@ @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)