Subversion Repositories gelsvn

Rev

Rev 2 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 6
Line 33... Line 33...
33
# or any library it depends on have been changed, we only have to go
33
# or any library it depends on have been changed, we only have to go
34
# > make force 
34
# > make force 
35
# in the directory containing the application. Application is also compiled
35
# in the directory containing the application. Application is also compiled
36
# and linked.
36
# and linked.
37
force:  ${not_main_objects}
37
force:  ${not_main_objects}
38
	$(foreach lib, ${OWN_LIBS},	${MAKE} -C ${SOURCEROOT}/Libsrc/${lib};)
38
	$(foreach lib, ${OWN_LIBS},	${MAKE} -C ${SOURCEROOT}/src/${lib};)
39
	${MAKE} ${PROGRAMS}
39
	${MAKE} ${PROGRAMS}
40
	$(foreach prg, ${PROGRAMS},	${INSTALL} ${BUILDDIR}/${prg} ${SOURCEROOT}/bin/${prg};)
40
	$(foreach prg, ${PROGRAMS},	${INSTALL} ${BUILDDIR}/${prg} ${SOURCEROOT}/bin/${prg};)
41
 
41
 
42
# app is default target. Compiles and links all applications.
42
# app is default target. Compiles and links all applications.
43
app: ${not_main_objects}
43
app: ${not_main_objects}