aboutsummaryrefslogtreecommitdiff
path: root/pymake.conf
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-07-31 22:50:47 +0000
committerMike Buland <eichlan@xagasoft.com>2006-07-31 22:50:47 +0000
commit73d53b0962cb19a6d2a7686de658a5540ab07017 (patch)
tree9a8fd737b8f77ec9ccab43d89dc54b7e72d4d90d /pymake.conf
parentb672fa69c4c98509f8ee251b87300e3fcbe6bdc8 (diff)
downloadbuild-73d53b0962cb19a6d2a7686de658a5540ab07017.tar.gz
build-73d53b0962cb19a6d2a7686de658a5540ab07017.tar.bz2
build-73d53b0962cb19a6d2a7686de658a5540ab07017.tar.xz
build-73d53b0962cb19a6d2a7686de658a5540ab07017.zip
It almost builds, we need to get rid of duplicate list entries and actually
store the commands somewhere so the target handler can decide if they need to be run.
Diffstat (limited to '')
-rw-r--r--pymake.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/pymake.conf b/pymake.conf
index 4775d78..a941a7c 100644
--- a/pymake.conf
+++ b/pymake.conf
@@ -68,14 +68,14 @@ COMMAND: g++ -c {INPUT} {CXXFLAGS} -I{DIR} -o {OUTPUT}
68CHECK: g++ -M {INPUT} {CXXFLAGS} -I{DIR} 68CHECK: g++ -M {INPUT} {CXXFLAGS} -I{DIR}
69 69
70[TRIGGER] 70[TRIGGER]
71INPUT .y 71INPUT: .y
72OUTPUT: .tab.c 72OUTPUT: .tab.c
73COMMAND: bison {INPUT} 73COMMAND: bison {INPUT}
74 74
75[TRIGGER] 75[TRIGGER]
76INPUT .l 76INPUT: .l
77OUTPUT: .yy.c 77OUTPUT: .yy.c
78COMMAND: flex --bison-bridge -o {OUTPUT} {INPUT} 78COMMAND: flex --bison-bridge --bison-locations -o {OUTPUT} {INPUT}
79 79
80### Executable command ### 80### Executable command ###
81## Use this command if you want a simple executable 81## Use this command if you want a simple executable