19 lines
438 B
Plaintext
19 lines
438 B
Plaintext
# These are external variables, and shouldn't clash with anything else
|
|
# @NAME@_MONOLITHIC
|
|
#
|
|
|
|
SRC="obj/@NAME@.c"
|
|
MONOLITHIC_TESTS="src/@NAME@/build.app src/@NAME@/build.monolithic"
|
|
|
|
if [ -z "${@NAME@_MONOLITHIC}" ]
|
|
then
|
|
MONOLITHIC_SOURCE="$(echo src/@NAME@/TopSource.c)"
|
|
make_monolithic ${SRC} C || return 1
|
|
|
|
@NAME@_MONOLITHIC=1
|
|
MONOLITHIC_DOC="${MONOLITHIC_DOC} ${SRC}"
|
|
fi
|
|
|
|
# kate: @KATE_MODELINE@
|
|
# vim: @VIM_MODELINE@
|