From: dtrg Date: Sat, 11 Nov 2006 22:59:52 +0000 (+0000) Subject: Updated to work with the new version of pm. X-Git-Tag: release-6-0-pre-1~36 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c21ba9ed0fa077e4b624faa50bfd1657aa9a239c;p=ack.git Updated to work with the new version of pm. --- diff --git a/mach/proto/ncg/pmfile b/mach/proto/ncg/pmfile index 73265dbdb..0f9126ee1 100644 --- a/mach/proto/ncg/pmfile +++ b/mach/proto/ncg/pmfile @@ -12,15 +12,19 @@ local cfile_with_tables = cfile { class = "cfile_with_tables", dynamicheaders = { make_tables, - file (ROOTDIR.."mach/%ARCH%/ncg/"), - file (ROOTDIR.."mach/%ARCHDIR%/ncg/"), - file (ROOTDIR.."mach/") } } proto_ncg = cprogram { class = "proto_ncg", + CINCLUDES = { + PARENT, + "mach/%ARCH%/ncg", + "mach/%ARCHDIR%/ncg", + "mach" + }, + cfile_with_tables (d.."codegen.c"), cfile_with_tables (d.."compute.c"), cfile_with_tables (d.."equiv.c"), @@ -40,11 +44,7 @@ proto_ncg = cprogram { cfile { ith { make_tables, i = 1 }, - dynamicheaders = { - file (ROOTDIR.."mach/%ARCH%/ncg/"), - file (ROOTDIR.."mach/%ARCHDIR%/ncg/"), - file (d) - } + CINCLUDES = {PARENT, d}, }, lib_em_data, @@ -53,9 +53,3 @@ proto_ncg = cprogram { outputs = {"%U%/%ARCH%-ncg"}, install = pm.install("%BINDIR%%PLATDEP%/%ARCH%/ncg") } - --- Revision history --- $Log$ --- Revision 1.1 2006-07-20 23:18:18 dtrg --- First version in CVS. ---