1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'END'
- SUBDIRS = sdir
- .PHONY: test
- test: distdir
- test ! -r $(distdir)/sdir/dest3
- test ! -r $(distdir)/sdir/dest2
- test ! -r $(distdir)/dest3
- test ! -r $(distdir)/dest2
- test -f $(distdir)/src2
- test ! -r $(distdir)/sdir/src3
- test ! -r $(distdir)/src3
- END
- : > src
- : > src2
- mkdir sdir
- : > sdir/Makefile.am
- : > sdir/src3
- cat >>configure.ac << 'EOF'
- AC_CONFIG_FILES([sdir/Makefile])
- my_src_dir=sdir
- my_dest=dest
- AC_CONFIG_LINKS([sdir/dest2:src2 sdir/dest3:$my_src_dir/src3])
- AC_CONFIG_LINKS([$my_dest:src])
- AC_CONFIG_LINKS([dest4:sdir/dest2])
- cmplink='dest5:src';
- AC_CONFIG_LINKS([$cmplink])
- AC_OUTPUT
- EOF
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE
- grep my_src_dir Makefile.in && exit 1
- grep my_dest Makefile.in && exit 1
- ./configure
- test -r sdir/dest2
- test -r sdir/dest3
- test -r dest
- test -r dest4
- test -r dest5
- $MAKE test
- $MAKE distclean
- test ! -e sdir/dest2
- test ! -e sdir/dest3
- test -r dest
- test -r dest5
- rm -f dest dest5
- test ! -e dest4
- mkdir build
- cd build
- ../configure
- $MAKE test
- :
|