18 lines
270 B
Bash
Executable File
18 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build configuration script for NFR.
|
|
#
|
|
# dugsong@monkey.org
|
|
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
cd ${WRKSRC}
|
|
|
|
# Get rid of bogus dependencies, since we aren't using third-party libs.
|
|
bin/undepend 2>&1 >/dev/null
|
|
|
|
# Generate makefiles.
|
|
bin/fixmake
|
|
|
|
# Yoda.
|