From 59ddeafec60f6536c3ba56c47faa264b2285d70a Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Fri, 9 Jan 2004 12:19:55 +0000 Subject: 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 --- server/Makefile.in | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'server/Makefile.in') 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) -- cgit v1.2.3