Update build.monolithic files to use wildcards

This commit is contained in:
Laurence Withers 2007-08-08 12:09:22 +00:00
commit 0bc48fd499
7 changed files with 9 additions and 9 deletions

View file

@ -8,10 +8,10 @@ MONOLITHIC_TESTS="src/@NAME@/build.lib src/@NAME@/build.monolithic"
if [ -z "${@CNAME@_MONOLITHIC}" ]
then
MONOLITHIC_SOURCE="$(echo src/@NAME@/{TopHeader,BottomHeader}.h)"
MONOLITHIC_SOURCE="$(echo src/@NAME@/*.h)"
make_monolithic ${HDR} Ch || return 1
MONOLITHIC_SOURCE="$(echo src/@NAME@/TopSource.c)"
MONOLITHIC_SOURCE="$(echo src/@NAME@/*.c)"
make_monolithic ${SRC} C || return 1
@CNAME@_MONOLITHIC=1