geary/console
Jim Nelson 328683ecfb Moved to waf for build system: #3690
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.
2011-06-27 14:55:22 -07:00

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