2 # Copyright (C) 2012 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Demo on C support, also testing automatic dependency tracking,
18 # conditional SUBDIRS and convenience libraries.
21 am_create_testdir=empty
24 cat > configure.ac << 'END'
25 AC_INIT([GNU C Demo], [22.3.2], [bug-automake@gnu.org])
26 AC_CONFIG_SRCDIR([tests/test.test])
27 AC_CONFIG_AUX_DIR([build-aux])
33 AM_CONDITIONAL([RUN_TESTS], [test x"$run_tests" != x"no"])
34 AC_CONFIG_FILES([Makefile src/Makefile lib/Makefile tests/Makefile])
38 if cross_compiling; then
45 mkdir build-aux lib src tests
47 cat > Makefile.am <<'END'
55 check-local: test-objs
57 test -f src/zardoz-main.$(OBJEXT)
58 test -f lib/foo.$(OBJEXT)
59 test -f lib/bar.$(OBJEXT)
62 cat > src/Makefile.am << 'END'
64 zardoz_SOURCES = main.c
65 zardoz_LDADD = $(top_builddir)/lib/lib-convenience.a
66 zardoz_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib
69 cat > lib/Makefile.am << 'END'
70 noinst_LIBRARIES = lib-convenience.a
71 lib_convenience_a_SOURCES = foo.c
72 lib_convenience_a_SOURCES += bar.c
73 dist_lib_convenience_a_SOURCES = bar.h
74 nodist_lib_convenience_a_SOURCES = foo.h
76 # We want this to be auto-generated an removed by "make clean", to
77 # ensure that cleaning rules work correctly; an older implementation
78 # of automatic dependency tracking support suffered of weaknesses in
79 # this situation, see the "historical comments" reported in:
80 # http://lists.gnu.org/archive/html/automake-patches/2012-06/msg00033.html
81 foo.h: $(srcdir)/foo.c
82 sed -n 's/.*foo *(.*/&;/p' "$(srcdir)/foo.c" >$@-t
83 test 1 -eq `wc -l <$@-t`
84 chmod a-w $@-t && mv -f $@-t $@
86 CLEANFILES = $(BUILT_SOURCES)
89 test -f ${top_srcdir}/tests/test.test
92 cat > tests/Makefile.am << 'END'
93 AUTOMAKE_OPTIONS = parallel-tests
94 TEST_LOG_COMPILER = $(SHELL)
99 cat > tests/test.test << 'END'
103 test "`../src/zardoz`" = 'Foo, Bar!'
108 $AUTOMAKE --add-missing
110 test -f build-aux/depcomp
111 test -f build-aux/compile # We have per-target flags on C sources.
113 # Don't reject slow dependency extractors.
114 ./configure --enable-dependency-tracking
116 cat > src/main.c << 'END'
121 printf ("%s, %s!\n", foo (), bar ());
126 cat > lib/foo.c << 'END'
129 volatile char *foo (void)
138 cat > lib/bar.c << 'END'
140 const char *bar (void)
146 cat > lib/bar.h << 'END'
148 const char *bar (void);
152 ls -l . src lib # For debugging.
155 VERBOSE=x $MAKE check
156 if cross_compiling; then
157 test ! -e tests/test-suite.log
158 test ! -e tests/test.log
160 test -f tests/test-suite.log
161 grep 'Foo, Bar!' tests/test.log
166 if ! cross_compiling && ! grep "[ $tab]depmode=none" Makefile; then
167 # Let's check automatic dependency tracking.
168 sed 's/^\(#define BARBAR \).*/\1 "Zap"/' lib/bar.h > t
172 test "$(./src/zardoz)" = 'Foo, Zap!'