File: bcb5.mak

package info (click to toggle)
log4cpp 1.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,444 kB
  • sloc: cpp: 6,715; sh: 3,670; ansic: 1,049; makefile: 295
file content (48 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (9)
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 ..