Fixes for apps.
This commit is contained in:
parent
744df95456
commit
5ac8d9c73a
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
source src/capp/build.lib
|
||||
source src/capp/build.app
|
||||
|
|
|
@ -1 +1 @@
|
|||
source src/capp/build.install-lib
|
||||
source src/capp/build.install-app
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
source src/cppapp/build.lib
|
||||
source src/cppapp/build.app
|
||||
|
|
|
@ -1 +1 @@
|
|||
source src/cppapp/build.install-lib
|
||||
source src/cppapp/build.install-app
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue