aboutsummaryrefslogtreecommitdiff
path: root/pymake.conf
diff options
context:
space:
mode:
Diffstat (limited to 'pymake.conf')
-rw-r--r--pymake.conf13
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 @@
5CXXFLAGS: -Ilibbu++/src 5CXXFLAGS: -Ilibbu++/src
6LDFLAGS: -Llibbu++ -lbu++ 6LDFLAGS: -Llibbu++ -lbu++
7 7
8[BUILD]
9FILE: src/build.y
10COMMAND: stupid
11OUTPUT: parser
12
13[BUILD]
14FILE: src/build.l
15COMMAND: stupid
16OUTPUT: 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}
79NAME: lib 89NAME: lib
80COMMAND: ar cr{ARFLAGS} {OUTPUT} {INPUT} 90COMMAND: ar cr{ARFLAGS} {OUTPUT} {INPUT}
81 91
92[COMMAND]
93NAME: 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.