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,18 @@
# These are external variables, and shouldn't clash with anything else
# LIBCPP_MONOLITHIC
if [ -z "${LIBCPP_MONOLITHIC}" ]
then
SRC="obj/lib.cpp"
HDR="obj/@HEADER_NAME@"
MONOLITHIC_TESTS="src/cpplib/build.lib src/cpplib/build.monolithic"
MONOLITHIC_SOURCE="$(echo src/lib/{TopHeader,BottomHeader}.h)"
make_monolithic ${HDR} C || return 1
MONOLITHIC_SOURCE="$(echo src/lib/TopSource.cpp)"
make_monolithic ${SRC} C || return 1
LIBCPP_MONOLITHIC=1
MONOLITHIC_DOC="${MONOLITHIC_DOC} ${HDR}"
fi