summaryrefslogtreecommitdiff
path: root/scripts/acprep
blob: 71e3a415dcdccef5978fe53c9d8e05c3ec4dcc2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

aclocal

if [ "$1" = "--dist" ]; then
    automake -acfi
else
    automake -acf
fi

autoheader
autoconf

if [ "$1" = "--gen" ]; then
    ./configure CPPFLAGS="-I/sw/include -I/usr/include/httpd/xml" \
		LDFLAGS=-L/sw/lib CXXFLAGS="-g" --enable-debug
fi