diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2005-02-10 16:32:05 +0100 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2005-02-10 16:32:05 +0100 |
commit | e578d12e6004f08764a38a5c40f0e5c87cbdf52e (patch) | |
tree | 89f3ba73c6c435e03cae4b0c3ad1233beeff88f5 /build/program.mk | |
parent | build all and add new japanese transformations (diff) | |
download | apache2-e578d12e6004f08764a38a5c40f0e5c87cbdf52e.tar.xz apache2-e578d12e6004f08764a38a5c40f0e5c87cbdf52e.zip |
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/program.mk')
-rw-r--r-- | build/program.mk | 1 |
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) |