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

@@ -30,11 +30,11 @@ tool_ack = cprogram {
cfile (d.."files.c"),
cfile {
CEXTRAFLAGS = "-I"..d,
CINCLUDES = {PARENT, d},
ith { makeheaders, i = 1 }
},
cfile {
CEXTRAFLAGS = "-I"..d,
CINCLUDES = {PARENT, d},
ith { makeheaders, i = 2 }
},
@@ -49,6 +49,9 @@ tool_ack = cprogram {
-- Revision history
-- $Log$
-- Revision 1.1 2006-07-20 23:18:18 dtrg
-- Revision 1.2 2006-10-15 00:28:12 dtrg
-- Updated to the version 0.1 of Prime Mover (which involves some syntax changes).
--
-- Revision 1.1 2006/07/20 23:18:18 dtrg
-- First version in CVS.
--

View File

@@ -4,7 +4,7 @@
local d = "util/arch/"
tool_aal = cprogram {
CEXTRAFLAGS = "-DAAL",
CDEFINES = {PARENT, "AAL"},
cfile (d.."archiver.c"),
lib_print,
@@ -20,7 +20,10 @@ tool_aal = cprogram {
-- Revision history
-- $Log$
-- Revision 1.2 2006-07-30 23:45:35 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/30 23:45:35 dtrg
-- Modified to install aal's manpage.
--
-- Revision 1.1 2006/07/20 23:18:18 dtrg

View File

@@ -16,8 +16,8 @@ local cfile_with_headers = cfile {
}
tool_ceg_as_parser = cprogram {
CEXTRAFLAGS = "-DFLEX",
CLIBRARIES = "-lfl",
CDEFINES = {PARENT, "FLEX"},
CLIBRARIES = {PARENT, "fl"},
cfile_with_headers (d.."conversion.c"),
cfile_with_headers (d.."help.c"),
@@ -51,6 +51,9 @@ tool_ceg_as_parser_eval = cprogram {
-- Revision history
-- $Log$
-- Revision 1.1 2006-07-20 23:18:18 dtrg
-- Revision 1.2 2006-10-15 00:28:11 dtrg
-- Updated to the version 0.1 of Prime Mover (which involves some syntax changes).
--
-- Revision 1.1 2006/07/20 23:18:18 dtrg
-- First version in CVS.
--

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

View File

@@ -91,7 +91,7 @@ tool_cpp = cprogram {
},
cfile_with_headers {
CEXTRAFLAGS = "-I"..d,
CINCLUDES = {PARENT, d},
tabgen (d.."char.tab")
},
@@ -110,7 +110,10 @@ tool_cpp = cprogram {
-- Revision history
-- $Log$
-- Revision 1.3 2006-07-22 20:58:27 dtrg
-- Revision 1.4 2006-10-15 00:28:11 dtrg
-- Updated to the version 0.1 of Prime Mover (which involves some syntax changes).
--
-- Revision 1.3 2006/07/22 20:58:27 dtrg
-- cpp now gets installed in the right place.
--
-- Revision 1.2 2006/07/22 12:27:31 dtrg

View File

@@ -57,7 +57,7 @@ local ego_core = cprogram {
}
tool_ego = group {
CDEFINES = {PARENT, "-DVERBOSE", "-DNOTCOMPACT"},
CDEFINES = {PARENT, "VERBOSE", "NOTCOMPACT"},
ego_core {
cfile_with_headers (d.."bo/bo.c"),
@@ -235,7 +235,10 @@ ego_descr = simple {
-- Revision history
-- $Log$
-- Revision 1.2 2006-07-23 17:52:23 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/23 17:52:23 dtrg
-- cpp now gets installed in the right place.
--
-- Revision 1.1 2006/07/22 00:52:01 dtrg

View File

@@ -48,7 +48,7 @@ local local_tool_opt = cprogram {
},
cprogram {
CLIBRARIES = {"-lfl"},
CLIBRARIES = {PARENT, "fl"},
cfile {
yacc {
@@ -87,7 +87,7 @@ tool_opt = group {
},
group {
CEXTRAFLAGS = "-DGLOBAL_OPT",
CDEFINES = {PARENT, "GLOBAL_OPT"},
local_tool_opt,
install = pm.install(BINDIR.."lib.bin/em_opt2")
},
@@ -95,6 +95,9 @@ tool_opt = group {
-- Revision history
-- $Log$
-- Revision 1.2 2006-07-20 23:10:07 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/20 23:10:07 dtrg
-- Fixed revision history.
--