1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #! /bin/sh
- required=GNUmake
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_OUTPUT
- END
- cat > Makefile.am << 'END'
- BAR := $(FOO)
- BAZ = $(FOO)
- FOO := foo
- .PHONY: test
- test:
- test x'$(FOO)' = x'foo'
- test x'$(BAZ)' = x'foo'
- test x'$(BAR)' = x
- END
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE -Wno-portability
- ./configure
- $MAKE test
- :
|