diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-07-31 22:50:47 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-07-31 22:50:47 +0000 |
commit | 73d53b0962cb19a6d2a7686de658a5540ab07017 (patch) | |
tree | 9a8fd737b8f77ec9ccab43d89dc54b7e72d4d90d /pymake.conf | |
parent | b672fa69c4c98509f8ee251b87300e3fcbe6bdc8 (diff) | |
download | build-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.conf | 6 |
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} | |||
68 | CHECK: g++ -M {INPUT} {CXXFLAGS} -I{DIR} | 68 | CHECK: g++ -M {INPUT} {CXXFLAGS} -I{DIR} |
69 | 69 | ||
70 | [TRIGGER] | 70 | [TRIGGER] |
71 | INPUT .y | 71 | INPUT: .y |
72 | OUTPUT: .tab.c | 72 | OUTPUT: .tab.c |
73 | COMMAND: bison {INPUT} | 73 | COMMAND: bison {INPUT} |
74 | 74 | ||
75 | [TRIGGER] | 75 | [TRIGGER] |
76 | INPUT .l | 76 | INPUT: .l |
77 | OUTPUT: .yy.c | 77 | OUTPUT: .yy.c |
78 | COMMAND: flex --bison-bridge -o {OUTPUT} {INPUT} | 78 | COMMAND: 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 |