summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2005-02-10 15:32:05 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2005-02-10 15:32:05 +0000
commite578d12e6004f08764a38a5c40f0e5c87cbdf52e (patch)
tree89f3ba73c6c435e03cae4b0c3ad1233beeff88f5 /build
parent3ad12bdca5b457bc8b5c571eeebf7167b3d3269e (diff)
downloadhttpd-e578d12e6004f08764a38a5c40f0e5c87cbdf52e.tar.gz
Only recompile buildmark.c when we have to relink httpd.
This allows us to be able to do a make on an up-to-date tree without forcing a recompile and relink. Yay! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@153266 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r--build/program.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/build/program.mk b/build/program.mk
index 19312c88d8..3b5d2abef2 100644
--- a/build/program.mk
+++ b/build/program.mk
@@ -18,4 +18,5 @@
PROGRAM_OBJECTS = $(PROGRAM_SOURCES:.c=.lo)
$(PROGRAM_NAME): $(PROGRAM_DEPENDENCIES) $(PROGRAM_OBJECTS)
+ $(PROGRAM_PRELINK)
$(LINK) $(PROGRAM_LDFLAGS) $(PROGRAM_OBJECTS) $(PROGRAM_LDADD)