This closes #3690 because waf fulfills that requirement, moving the .c's to a separate directory. waf also gives us incremental builds, so -j4 is back.
12 lines
295 B
Bash
Executable file
12 lines
295 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# This script is merely intended for developers to use to run console from
|
|
# the development directory, and is not needed or meant for installation.
|
|
|
|
if [ -f build/src/console/console ]
|
|
then
|
|
build/src/console/console "$@"
|
|
else
|
|
echo "Run './waf configure build' first."
|
|
fi
|
|
|