From: Sascha Schumann Date: Sun, 30 Apr 2000 15:51:37 +0000 (+0000) Subject: Most of the support programs are created during the build, so we can expect X-Git-Tag: APACHE_2_0_ALPHA_4~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=998b29182f90218db342db47d102ea8f34f6fb9b;p=thirdparty%2Fapache%2Fhttpd.git Most of the support programs are created during the build, so we can expect them to be in $(builddir). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85111 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index 39e70891129..38c4a005735 100644 --- a/Makefile.in +++ b/Makefile.in @@ -15,7 +15,7 @@ PROGRAM_DEPENDENCIES = \ PROGRAMS = $(PROGRAM_NAME) targets = $(PROGRAMS) -phony_targets = buildmark.c +phony_targets = $(srcdir)/buildmark.c install_targets = install-conf install-htdocs install-icons install-other \ install-cgi install-include install-support DISTCLEANFILES = include/config_auto.h modules.c aclocal.m4 buildmk.stamp \ @@ -64,12 +64,12 @@ 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) - + @cp -rp $(builddir)/support/htpasswd $(bindir) + @cp -rp $(builddir)/support/htdigest $(bindir) + @cp -rp $(builddir)/support/rotatelogs $(bindir) + @cp -rp $(builddir)/support/logresolve $(bindir) + @cp -rp $(builddir)/support/ab $(bindir) + install-other: @test -d $(logdir) || $(mkinstalldirs) $(logdir)