1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #! /bin/sh
- required=libtool
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_PROG_CC
- AC_PROG_LIBTOOL
- END
- cat > Makefile.am << 'END'
- lib_LTLIBRARIES = libviewer.la
- libviewer_la_SOURCES =
- libviewer_la_LIBADD = libphony.la
- END
- : > ltconfig
- : > ltmain.sh
- : > config.guess
- : > config.sub
- $ACLOCAL
- $AUTOMAKE -Wno-extra-portability
- grep '^LINK =' Makefile.in
- :
|