123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #! /bin/sh
- required=cc
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_PROG_CC
- AC_OUTPUT
- END
- cat > Makefile.am << 'END'
- bin_PROGRAMS = foo
- FOO = foo.cxx
- BAR = bar__
- BAZ = baz.
- foo_SOURCES = main.c $(FOO:.cxx=.c)
- dist_foo_SOURCES = $(BAR:__=.c)
- nodist_foo_SOURCES = $(BAZ:=c)
- bar.c baz.c:
- echo 'int $@ (void) { return 0; }' | sed 's/\.c //' > $@
- CLEANFILES = baz.c
- CLEANFILES += bar.c
- .PHONY: test test2
- check-local: test1 test2
- test1:
- ls -l . $(srcdir)
- test -f $(srcdir)/bar.c
- test -f baz.c
- test2: distdir
- ls -l $(distdir)
- test -f $(distdir)/bar.c
- test -f $(distdir)/foo.c
- test -f $(distdir)/main.c
- test ! -r $(distdir)/baz.c
- END
- cat > main.c <<'END'
- int main(void)
- {
- int foo(void), bar(void), baz(void);
- return foo() + bar() + baz();
- }
- END
- echo 'int foo(void) { return 0; }' > foo.c
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE
- ./configure
- $MAKE
- $MAKE test1 test2
- $MAKE distcheck
- :
|