Initial commit.

This commit is contained in:
Laurence Withers 2006-07-24 14:24:06 +01:00
commit 5af1a83262
51 changed files with 1824 additions and 0 deletions

View file

@ -0,0 +1,15 @@
# These are external variables, and shouldn't clash with anything else
# APPCPP_MONOLITHIC
#
if [ -z "${APPCPP_MONOLITHIC}" ]
then
SRC="obj/app.cpp"
MONOLITHIC_TESTS="src/cppapp/build.app src/cppapp/build.monolithic"
MONOLITHIC_SOURCE="$(echo src/lib/TopHeader.h) $(echo src/lib/TopSource.cpp)"
make_monolithic ${SRC} C || return 1
APPCPP_MONOLITHIC=1
MONOLITHIC_DOC="${MONOLITHIC_DOC} ${SRC}"
fi