diff options
author | Joe Orton <jorton@apache.org> | 2004-01-09 13:19:55 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2004-01-09 13:19:55 +0100 |
commit | 59ddeafec60f6536c3ba56c47faa264b2285d70a (patch) | |
tree | aea9eccf9fb20bee31f6ec04f28cd7510f3d04fd /server/Makefile.in | |
parent | * acinclude.m4 (APACHE_MODULE): Remove redundant $ac_n and $ac_c (diff) | |
download | apache2-59ddeafec60f6536c3ba56c47faa264b2285d70a.tar.xz apache2-59ddeafec60f6536c3ba56c47faa264b2285d70a.zip |
Fix regeneration of build datestamp on every make invocation (a
regression since 1.3).
* Makefile.in: Remove redundant PHONY_TARGETS setting.
* server/Makefile.in: Mark buildmark.c as phony; build it indirectly
via buildmarked.c since implicit rules are ignored for phony targets.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102243 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r-- | server/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index 698dda6af1..bd5799edad 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -1,6 +1,6 @@ CLEAN_TARGETS = gen_test_char test_char.h gen_uri_delims uri_delims.h \ - ApacheCoreOS2.def + ApacheCoreOS2.def buildmarked.c DISTCLEAN_TARGETS = httpd.exp EXTRACLEAN_TARGETS = export_files exports.c export_vars.h @@ -13,14 +13,19 @@ LTLIBRARY_SOURCES = \ util_script.c util_md5.c util_cfgtree.c util_ebcdic.c util_time.c \ connection.c listen.c \ mpm_common.c util_charset.c util_debug.c util_xml.c \ - util_filter.c exports.c buildmark.c \ + util_filter.c exports.c buildmarked.c \ scoreboard.c error_bucket.c protocol.c core.c request.c provider.c TARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.exp +PHONY_TARGETS = $(srcdir)/buildmark.c + include $(top_builddir)/build/rules.mk include $(top_srcdir)/build/library.mk +buildmarked.c: $(srcdir)/buildmark.c + cp $(srcdir)/buildmark.c $@ + gen_test_char_OBJECTS = gen_test_char.lo util_debug.lo gen_test_char: $(gen_test_char_OBJECTS) $(LINK) $(EXTRA_LDFLAGS) $(gen_test_char_OBJECTS) $(EXTRA_LIBS) |