+$(PHONY) variable for global target: .PHONY
authorshort <>
Thu, 15 Dec 2005 19:17:04 +0000 (19:17 +0000)
committershort <>
Thu, 15 Dec 2005 19:17:04 +0000 (19:17 +0000)
Cosmetic: .PHONY-tize target: distfiles
Workaround automake-1.9.5-1: .include_test_false.c -> _include_test_false.c

Makefile-head.am

index ebcd82a..0e12529 100644 (file)
@@ -25,6 +25,7 @@ EXTRA_DIST=
 BUILT_SOURCES=
 CLEANFILES=
 MAINTAINERCLEANFILES=
+PHONY=
 # default DEFAULT_INCLUDES=' -I. -I$(srcdir)'.(dirnames of 'CONFIG_HEADER') ,
 # we neeed such $(DEFAULT_INCLUDES) but we need to prefer our $(INCLUDES)
 # thus we postpone them later by moving them to $(AM_CPPFLAGS).
@@ -66,8 +67,10 @@ INCLUDES+=-I$(top_srcdir)/intl
 # Generally better behaviour but it requires GNU make. Harmless otherwise.
 .DELETE_ON_ERROR:
 
+.PHONY: $(PHONY)
 
 # This target is used during ./autogen.pl POTFILES.in generation
+PHONY+=distfiles
 distfiles: $(DISTFILES)
        @if test -n "$(DISTFILES_PRINT)";then \
                echo -n ":DISTFILES:"; \
@@ -125,12 +128,14 @@ endif
 
 # Unfortunately we need to use this never-invocated target
 # to get $(COMPILE) variable definition.
-MAINTAINERCLEANFILES+=.include_test_false.c
-BUILT_SOURCES+=.include_test_false.c
+# Do not: .include_test_false.c
+# as automake-1.9.5-1 would produce invalid rules for file: .c
+MAINTAINERCLEANFILES+=_include_test_false.c
+BUILT_SOURCES+=_include_test_false.c
 if NEVER
-noinst_PROGRAMS=.include_test_false
+noinst_PROGRAMS=_include_test_false
 endif
-.include_test_false.c:
+_include_test_false.c:
        @touch $@
 
 if HAVE_PERL