Added Basic library and Revision number.

This commit is contained in:
keie 1984-12-10 15:14:00 +00:00
parent 4a2c2d89a0
commit c39e619032

View file

@ -1,3 +1,4 @@
# $Revision$
var w=2 var w=2
var p=2 var p=2
var s=2 var s=2
@ -6,16 +7,16 @@ var f=4
var d=8 var d=8
var M=pdp var M=pdp
var NAME=pdp var NAME=pdp
var LIB=mach/pdp/lib/tail_ var LIB=lib/{M}/tail_
var RT=mach/pdp/lib/head_ var RT=lib/{M}/head_
var CCP_F=-Dunix var CPP_F=-Dunix
var INCLUDES=-I{EM}/include -I/usr/include var INCLUDES=-I{EM}/include -I/usr/include
name be name be
from .m from .m.g
to .s to .s
program {EM}/lib/{M}_cg program {EM}/lib/{M}/cg
args < args <
prop > stdout
need .e need .e
end end
name as name as
@ -23,17 +24,19 @@ name as
to .o to .o
program /bin/as program /bin/as
args - -o > < args - -o > <
prop m prep cond
end end
name ld name ld
from .o.a from .o.a
to a.out to .out
outfile a.out
program /bin/ld program /bin/ld
mapflag -l* LNAME={EM}/{LIB}* mapflag -l* LNAME={EM}/{LIB}*
args (.e:{HEAD}={EM}/{RT}em) \ args (.e:{HEAD}={EM}/{RT}em) \
({RTS}:.c={EM}/{RT}cc) ({RTS}:.p={EM}/{RT}pc) -o > < \ ({RTS}:.b.c={EM}/{RT}cc) ({RTS}:.p={EM}/{RT}pc) -o > < \
(.p:{TAIL}={EM}/{LIB}pc) \ (.p:{TAIL}={EM}/{LIB}pc) \
(.c:{TAIL}={EM}/{LIB}cc.1s {EM}/{LIB}cc.2g) \ (.b:{TAIL}={EM}/{LIB}bc) \
(.b.c:{TAIL}={EM}/{LIB}cc.1s {EM}/{LIB}cc.2g) \
(.e:{TAIL}={EM}/{LIB}em) (.c.p:{TAIL}=/lib/libc.a) (.e:{TAIL}={EM}/{LIB}em) (.c.p:{TAIL}=/lib/libc.a)
prop C linker
end end