blob: e46ef51478cb31443461b9558e0649777ae0a46a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
# Run this to generate all the initial makefiles, etc.
test -f Makefile.am || cd "`dirname \"$0\"`"
# Create `aclocal.m4'.
aclocal
# Create `Makefile.in' from `Makefile.am', and symlink `install-sh',
# `missing' and `mkinstalldirs' from /usr/share/automake.
automake --add-missing
# Create `configure' from `configure.in'.
autoconf
|