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