Initial commit.
This commit is contained in:
commit
5af1a83262
51 changed files with 1824 additions and 0 deletions
18
skel/src/cpplib/build.monolithic
Normal file
18
skel/src/cpplib/build.monolithic
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue