1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#! /bin/sh
# Script to compile mhWaveEdit from a Git master branch commit
# Configure options can be given on command line
# Requires autoconf, automake and some other stuff
#
# Users building from a release tarball do not need to use this script
# The standard ./configure followed by make flow can be used there instead.
#
cd docgen; bash gendocs.sh; cd ..
aclocal --force -I m4
autoheader --force
automake --add-missing --copy
autoconf --force
./configure $*
make -C po mhwaveedit.pot-update
make
|