Codebase list mhwaveedit / 7421fd86-638c-44f9-87fc-ff2fa5edfc4d/main gitcompile.sh
7421fd86-638c-44f9-87fc-ff2fa5edfc4d/main

Tree @7421fd86-638c-44f9-87fc-ff2fa5edfc4d/main (Download .tar.gz)

gitcompile.sh @7421fd86-638c-44f9-87fc-ff2fa5edfc4d/mainraw · history · blame

#! /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