finalcut/autogen.sh

32 lines
568 B
Bash
Raw Normal View History

2015-05-23 13:35:12 +02:00
#!/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
2015-07-09 02:15:12 +02:00
# Update generated configuration files
#autoreconf -v --install --force
2015-05-23 13:35:12 +02:00
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