summaryrefslogtreecommitdiffstats
path: root/server/Makefile.in
diff options
context:
space:
mode:
authordgaudet <dgaudet@unknown>2000-06-10 03:10:10 +0200
committerdgaudet <dgaudet@unknown>2000-06-10 03:10:10 +0200
commit3eb76501e40f1b46ba5861d3a1465ab68ad5437e (patch)
treec3ef0a4801efe0fd8b1007e27595344b136527e5 /server/Makefile.in
parentWe don't ever actually use HAVE_CRYPT, so stop defining it. (diff)
downloadapache2-3eb76501e40f1b46ba5861d3a1465ab68ad5437e.tar.xz
apache2-3eb76501e40f1b46ba5861d3a1465ab68ad5437e.zip
fix dependencies. (what is a .lo anyway? i tried making the .o depend
on the .h which is how dependencies usually work, but the other rules didn't work out right unless i used a .lo ... i suppose this only matters to folks building with -j N) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85491 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r--server/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/Makefile.in b/server/Makefile.in
index 2401acf85d..36c08db9b6 100644
--- a/server/Makefile.in
+++ b/server/Makefile.in
@@ -26,5 +26,5 @@ uri_delims.h: gen_uri_delims
test_char.h: gen_test_char
./gen_test_char > test_char.h
-$(srcdir)/util_uri.c: uri_delims.h
-$(srcdir)/util.c: test_char.h
+util_uri.o: uri_delims.h
+util.o: test_char.h