diff options
-rw-r--r-- | build.conf | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,11 +1,11 @@ | |||
1 | # This is a build file for libbu++ | 1 | # This is a build file for libbu++ |
2 | 2 | ||
3 | default action: check libbu++.a | 3 | default action: check "libbu++.a" |
4 | "tests" action: check /tests\/.*/ | 4 | "tests" action: check /tests\/.*/ |
5 | "clean" action: clean /.*/ | 5 | "clean" action: clean /.*/ |
6 | "all" action: check /.*/ | 6 | "all" action: check /.*/ |
7 | 7 | ||
8 | create file libbu++.a from files in src using rule lib | 8 | create file "libbu++.a" from files in src using rule lib |
9 | 9 | ||
10 | for directories matching /src\/test\/(.*)/ in src/test ... | 10 | for directories matching /src\/test\/(.*)/ in src/test ... |
11 | create file "tests/{re:1}" from files in "{match}" using rule exe | 11 | create file "tests/{re:1}" from files in "{match}" using rule exe |
@@ -17,7 +17,7 @@ for targets matching /tests\/.*/ set LDFLAGS += "-L. -lbu++" | |||
17 | for testes/plugin set LDFLAGS += "-ldl" | 17 | for testes/plugin set LDFLAGS += "-ldl" |
18 | 18 | ||
19 | /(.*)\.o$/ requires from command "g++ {CXXFLAGS} -M {re:1}.c*" | 19 | /(.*)\.o$/ requires from command "g++ {CXXFLAGS} -M {re:1}.c*" |
20 | /tests\/.*/ requires libbu++.a | 20 | /tests\/.*/ requires "libbu++.a" |
21 | 21 | ||
22 | rule lib matches all /(.*)\.o$/ perform command ... | 22 | rule lib matches all /(.*)\.o$/ perform command ... |
23 | "ar cr {target} {match}" | 23 | "ar cr {target} {match}" |