Updated to the version 0.1 of Prime Mover (which involves some syntax changes).

This commit is contained in:
dtrg
2006-10-15 00:28:12 +00:00
parent 708a83ef22
commit dbe10d2c19
34 changed files with 299 additions and 222 deletions

View File

@@ -11,12 +11,12 @@ tool_cgg = cprogram {
cfile (d.."main.c"),
cfile {
CEXTRAFLAGS = "-I"..d,
CINCLUDES = {PARENT, d},
yacc_bootgram,
},
cfile {
CEXTRAFLAGS = "-I"..d,
CINCLUDES = {PARENT, d},
flex {
file (d.."bootlex.l")
},
@@ -24,7 +24,7 @@ tool_cgg = cprogram {
dynamicheaders = yacc_bootgram
},
CLIBRARIES = {"-lfl"},
CLIBRARIES = {PARENT, "fl"},
lib_em_data,
lib_assert,
lib_system,
@@ -43,7 +43,10 @@ cgg = simple {
-- Revision history
-- $Log$
-- Revision 1.2 2006-07-22 20:58:27 dtrg
-- Revision 1.3 2006-10-15 00:28:12 dtrg
-- Updated to the version 0.1 of Prime Mover (which involves some syntax changes).
--
-- Revision 1.2 2006/07/22 20:58:27 dtrg
-- cpp now gets installed in the right place.
--
-- Revision 1.1 2006/07/20 23:21:17 dtrg