Fixes for apps.

This commit is contained in:
Laurence Withers 2006-07-24 14:34:15 +01:00
parent 744df95456
commit 5ac8d9c73a
10 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* COPYING for more information / terms of license.
*/
// Below are all the includes used throughout the library.
// Below are all the includes used throughout the application.
/* options for text editors
kate: replace-trailing-space-save true; space-indent true; tab-width 4;

View File

@ -15,7 +15,7 @@ then
MODIFIED=0
for test in ${MONOLITHIC_TESTS} ${HDR} ${SRC}
do
if [ ${test} -nt ${LIB} ]
if [ ${test} -nt ${APP} ]
then
MODIFIED=1
break

View File

@ -1 +1 @@
source src/capp/build.lib
source src/capp/build.app

View File

@ -1 +1 @@
source src/capp/build.install-lib
source src/capp/build.install-app

View File

@ -7,7 +7,7 @@ then
SRC="obj/app.c"
MONOLITHIC_TESTS="src/capp/build.app src/capp/build.monolithic"
MONOLITHIC_SOURCE="$(echo src/lib/TopHeader.h) $(echo src/lib/TopSource.c)"
MONOLITHIC_SOURCE="$(echo src/capp/TopHeader.h) $(echo src/capp/TopSource.c)"
make_monolithic ${SRC} C || return 1
APPC_MONOLITHIC=1

View File

@ -4,7 +4,7 @@
* COPYING for more information / terms of license.
*/
// Below are all the includes used throughout the library.
// Below are all the includes used throughout the application.
/* options for text editors
kate: replace-trailing-space-save true; space-indent true; tab-width 4;

View File

@ -15,7 +15,7 @@ then
MODIFIED=0
for test in ${MONOLITHIC_TESTS} ${HDR} ${SRC}
do
if [ ${test} -nt ${LIB} ]
if [ ${test} -nt ${CPPAPP} ]
then
MODIFIED=1
break

View File

@ -1 +1 @@
source src/cppapp/build.lib
source src/cppapp/build.app

View File

@ -1 +1 @@
source src/cppapp/build.install-lib
source src/cppapp/build.install-app

View File

@ -7,7 +7,7 @@ then
SRC="obj/app.cpp"
MONOLITHIC_TESTS="src/cppapp/build.app src/cppapp/build.monolithic"
MONOLITHIC_SOURCE="$(echo src/lib/TopHeader.h) $(echo src/lib/TopSource.cpp)"
MONOLITHIC_SOURCE="$(echo src/cppapp/TopHeader.h) $(echo src/cppapp/TopSource.cpp)"
make_monolithic ${SRC} C || return 1
APPCPP_MONOLITHIC=1