summaryrefslogtreecommitdiff
path: root/buildconf
blob: db3a1e8e9be19d751a992a71af748ec5fec3580c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

BUILD_BASE=`pwd`
export BUILD_BASE

rm -f generated_lists

case "`uname`" in
*BSD/OS*)
    ./build/bsd_makefile;;
esac

${MAKE:-make} -f build/build.mk ${1+"$@"}