1 # flowertest/GNUmakefile
3 # This file helps maintainers to keep their Makefile.am automatically
4 # up to date using GNU make features.
5 # If you don't have (or run) GNU make, Makefile.am will not be updated
6 # automatically when source files are added/removed.
8 # automake/wild-make should generate this file from Makefile.am.wild
12 Makefile
=$(wildcard Makefile
)
13 # are we configured here, or are we using --srcdir
14 ifeq ($(Makefile
),Makefile
)
25 make-in-build
: wild-check
26 exec
$(MAKE
) -C
$(biltdir
)
29 include $(biltdir
)/Makefile
33 # Makefile.am.wild: test_SOURCES = $(wildcard *.cc)
34 CURRENT_test_SOURCES
= $(wildcard *.
cc)
35 # Makefile.am.wild: noinst_HEADERS = $(wildcard *.hh)
36 CURRENT_noinst_HEADERS
= $(wildcard *.hh
)
38 wild-check
: check-extra-sources check-noinst-headers
41 ifneq ($(test_SOURCES
),$(CURRENT_test_SOURCES
))
42 @echo
\"$(test_SOURCES
)\"
43 @echo
\"$(CURRENT_test_SOURCES
)\"
44 @echo test_SOURCES changed
: rerunning make-wild.
46 $(PERL
) $(top_srcdir
)/bin
/wild-perl
< Makefile.am.wild
> Makefile.am
50 ifneq ($(noinst_HEADERS
),$(CURRENT_noinst_HEADERS
))
51 @echo
\"$(noinst_HEADERS
)\"
52 @echo
\"$(CURRENT_noinst_HEADERS
)\"
53 @echo noinst_HEADERS changed
: rerunning make-wild.
55 $(PERL
) $(top_srcdir
)/bin
/wild-perl
< Makefile.am.wild
> Makefile.am