1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
!ifndef ROOT
ROOT = $(MAKEDIR)\..
!endif
PROJECTS = log4cpp.dll testmain.exe testCategory.exe testNDC.exe \
testFixedContextCategory.exe testPattern.exe testConfig.exe
default: $(PROJECTS)
log4cpp.dll:
cd log4cpp
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
testmain.exe:
cd testmain
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
testCategory.exe:
cd testCategory
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
testNDC.exe:
cd testNDC
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
testFixedContextCategory.exe:
cd testFixedContextCategory
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
testPattern.exe:
cd testPattern
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
testConfig.exe:
cd testConfig
$(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
cd ..
|