em_table is now in /h, not /etc.

This commit is contained in:
dtrg
2007-02-25 12:51:21 +00:00
parent aacc645329
commit 19df20b027
4 changed files with 24 additions and 12 deletions

View File

@@ -8,13 +8,13 @@ lib_emk = file (LIBDIR.."libemk.a")
local em_codeMK_h = simple {
outputs = {"%U%-%I%.h"},
command = {
d.."make.em.gen etc/em_table "..d.."em.nogen > %out%",
"%in[1]% %in[2]% "..d.."em.nogen > %out%",
"cat "..d.."em.nogen >> %out%"
},
install = pm.install(HEADERDIR.."em_codeEK.h"),
file (d.."make.em.gen"),
file ("etc/em_table")
file ("%ROOTDIR%h/em_table")
}
local em_cfile = cfile {
@@ -101,7 +101,10 @@ module_em_code = group {
-- Revision history
-- $Log$
-- Revision 1.2 2006-10-15 00:28:11 dtrg
-- Revision 1.3 2007-02-25 12:46:41 dtrg
-- em_table is now in /h, not /etc.
--
-- 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

View File

@@ -7,21 +7,21 @@ lib_read_emkV = file (LIBDIR.."libread_emkV.a")
lib_read_emeV = file (LIBDIR.."libread_emeV.a")
local C_mnem_h = simple {
command = {"(cd "..d.." && sh %in%) > %out%"},
command = {"(cd "..d.." && sh %in[1]% %in[2]%) > %out%"},
outputs = {"%U%-%I%.h"},
install = pm.install(HEADERDIR.."C_mnem.h"),
file (ROOTDIR..d.."m_C_mnem"),
file (ROOTDIR.."etc/em_table")
file ("%ROOTDIR%h/em_table")
}
local C_mnem_narg_h = simple {
command = {"(cd "..d.." && %in%) > %out%"},
command = {"(cd "..d.." && %in[1]% %in[2]%) > %out%"},
outputs = {"%U%-%I%.h"},
install = pm.install(HEADERDIR.."C_mnem_narg.h"),
file (ROOTDIR..d.."m_C_mnem_na"),
file (ROOTDIR.."etc/em_table")
file ("%ROOTDIR%h/em_table")
}
local withdynamic = cfile {
@@ -85,7 +85,10 @@ module_read_em = group {
-- Revision history
-- $Log$
-- Revision 1.2 2006-10-15 00:28:11 dtrg
-- Revision 1.3 2007-02-25 12:47:10 dtrg
-- em_table is now in /h, not /etc.
--
-- 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