29 lines
495 B
Bash
29 lines
495 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Set up an m4 environment
|
||
|
aclocal
|
||
|
|
||
|
# Generate configure from configure.ac
|
||
|
autoconf
|
||
|
|
||
|
# reate a template header (config.h.in) for configure
|
||
|
autoheader
|
||
|
|
||
|
# generates a custom version of the generic libtool script
|
||
|
libtoolize --copy
|
||
|
|
||
|
# Generate Makefile.in from Makefile.am
|
||
|
automake --add-missing --copy
|
||
|
|
||
|
echo
|
||
|
echo 'run "./configure ; make"'
|
||
|
echo
|
||
|
|
||
|
# Generate Makefile from Makefile.in
|
||
|
#./configure
|
||
|
|
||
|
# Use Makefile to build and test a tarball to distribute
|
||
|
#make distcheck
|
||
|
#make distclean
|
||
|
|