File: gitcompile.sh

package info (click to toggle)
mhwaveedit 1.4.24-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,212 kB
  • sloc: ansic: 28,911; sh: 3,856; ruby: 89; makefile: 42; sed: 16
file content (18 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (2)
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