blob: 1ebdb211d9b4a9b9d723008bcdf5b3a77860723a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
autoconf $IPATHS || exit 1
autoheader $IPATHS || exit 1
echo "Now run ./configure and then make."
exit 0
|