diff options
Diffstat (limited to 'pymake.conf')
-rw-r--r-- | pymake.conf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pymake.conf b/pymake.conf index 83d9885..2340fd5 100644 --- a/pymake.conf +++ b/pymake.conf | |||
@@ -5,6 +5,16 @@ | |||
5 | CXXFLAGS: -Ilibbu++/src | 5 | CXXFLAGS: -Ilibbu++/src |
6 | LDFLAGS: -Llibbu++ -lbu++ | 6 | LDFLAGS: -Llibbu++ -lbu++ |
7 | 7 | ||
8 | [BUILD] | ||
9 | FILE: src/build.y | ||
10 | COMMAND: stupid | ||
11 | OUTPUT: parser | ||
12 | |||
13 | [BUILD] | ||
14 | FILE: src/build.l | ||
15 | COMMAND: stupid | ||
16 | OUTPUT: lexer | ||
17 | |||
8 | ## A simple command to build everything in this directory, and output | 18 | ## A simple command to build everything in this directory, and output |
9 | ## an executable with the name 'main' | 19 | ## an executable with the name 'main' |
10 | [BUILD] | 20 | [BUILD] |
@@ -79,6 +89,9 @@ COMMAND: g++ {INPUT} {LDFLAGS} -o {OUTPUT} | |||
79 | NAME: lib | 89 | NAME: lib |
80 | COMMAND: ar cr{ARFLAGS} {OUTPUT} {INPUT} | 90 | COMMAND: ar cr{ARFLAGS} {OUTPUT} {INPUT} |
81 | 91 | ||
92 | [COMMAND] | ||
93 | NAME: stupid | ||
94 | |||
82 | ### Strange example ### | 95 | ### Strange example ### |
83 | ## The following trigger will take all *.q files, strip all '&'s from them | 96 | ## The following trigger will take all *.q files, strip all '&'s from them |
84 | ## and generate a .cpp file, which will then be compiled using the cpp trigger. | 97 | ## and generate a .cpp file, which will then be compiled using the cpp trigger. |