32 lines
568 B
Bash
Executable File
32 lines
568 B
Bash
Executable File
#!/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
|
|
|
|
# Update generated configuration files
|
|
#autoreconf -v --install --force
|
|
|
|
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
|
|
|