From: dtrg Date: Sun, 29 Apr 2007 23:03:24 +0000 (+0000) Subject: Cleaned up a bit and made work with the new platform architecture. X-Git-Tag: release-6-0-pre-3~1 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=663f4f2fb5ff2c321cd139845d147436a6afb60e;p=ack.git Cleaned up a bit and made work with the new platform architecture. --- diff --git a/mach/proto/top/pmfile b/mach/proto/top/pmfile index acca4c36b..121bb6ce2 100644 --- a/mach/proto/top/pmfile +++ b/mach/proto/top/pmfile @@ -4,7 +4,7 @@ local d = ROOTDIR.."mach/proto/top/" local make_tables = topgen { - file (ROOTDIR.."mach/%PLATFORM%/top/table") + file (ROOTDIR.."mach/%ARCH%/top/table") } local cfile_with_tables = cfile { @@ -17,7 +17,7 @@ local cfile_with_tables = cfile { proto_top = cprogram { CINCLUDES = { PARENT, - "mach/%PLATFORM%/ncg", + "mach/%ARCH%/ncg", "mach", d }, @@ -27,25 +27,6 @@ proto_top = cprogram { lib_string, - outputs = {"%U%/%PLATFORM%-top"}, + outputs = {"%U%/%ARCH%-top"}, install = pm.install("%BINDIR%%PLATDEP%/%PLATFORM%/top") } - --- Revision history --- $Log$ --- Revision 1.3 2007-02-20 00:45:19 dtrg --- Done a major overhaul of the way target include files are installed and --- how platform libraries are built. The ARCH pm variable has now been --- renamed PLATFORM (which is more accurate) and a different ARCH --- variable added, which represents the CPU family rather than the --- hardware platform. --- --- 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/22 12:31:19 dtrg --- Added support for the top target peephole optimiser. --- --- Revision 1.1 2006/07/20 23:18:18 dtrg --- First version in CVS. ---