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