Further work in progress.

This commit is contained in:
Laurence Withers 2006-07-24 22:37:26 +01:00
commit 587981015f
15 changed files with 86 additions and 92 deletions

View file

@ -1,7 +1,7 @@
# These are external variables, and shouldn't clash with anything else
# @PNAME@_MONOLITHIC
# @CNAME@_MONOLITHIC
if [ -z "${@PNAME@_MONOLITHIC}" ]
if [ -z "${@CNAME@_MONOLITHIC}" ]
then
SRC="obj/@NAME@.c"
HDR="obj/@HEADER_NAME@"
@ -10,10 +10,10 @@ then
MONOLITHIC_SOURCE="$(echo src/@NAME@/{TopHeader,BottomHeader}.h)"
make_monolithic ${HDR} C || return 1
MONOLITHIC_SOURCE="$(echo src/@NAME@/TopSource.cpp)"
MONOLITHIC_SOURCE="$(echo src/@NAME@/TopSource.c)"
make_monolithic ${SRC} C || return 1
@PNAME@_MONOLITHIC=1
@CNAME@_MONOLITHIC=1
MONOLITHIC_DOC="${MONOLITHIC_DOC} ${HDR}"
fi
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;