12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #!/bin/sh
- required=GNUmake
- . test-init.sh
- echo AC_OUTPUT >> configure.ac
- cat > Makefile.am <<'EOF'
- mydir = $(prefix)/my
- dist_my_DATA = hello$$world
- check-dist: distdir
- test -f '$(distdir)/hello$$world'
- EOF
- : > 'hello$world'
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE
- ./configure --prefix "$(pwd)/inst"
- $MAKE install
- test -f 'inst/my/hello$world'
- $MAKE check-dist
- :
|