plan9fox/sys/src/cmd/cc/mkfile
cinap_lenrek 1b8a569417 cc, ?[acl]: fix gethunk() and move common memory allocator code to cc/compat
for gethunk() to work, all allocators have to use it,
including allocations done by libc thru malloc(),
so the fake allocation functions are mandatory for
everyone.

to avoid duplication the code is moved to cc/compat
and prototypes provided in new cc/compat.h header.
2020-04-11 05:03:49 +02:00

56 lines
626 B
Makefile

</$objtype/mkfile
LIB=cc.a$O
OFILES=\
y.tab.$O\
lex.$O\
mac.$O\
dcl.$O\
acid.$O\
pickle.$O\
bits.$O\
com.$O\
scon.$O\
funct.$O\
sub.$O\
com64.$O\
compat.$O\
dpchk.$O\
omachcap.$O\
HFILES=cc.h\
compat.h\
y.tab.h\
YFILES=cc.y\
CURCC=6c 8c qc vc
OTHERCC=1c 2c 5c 7c kc
</sys/src/cmd/mklib
install:V: $LIB
date
$LIB: $LIBOBJ
ar vu $LIB $OFILES
mac.$O: macbody
compat.$O: compat
everything:V:
# mk the current compilers
for(DIR in cc $CURCC){
cd ../$DIR
mk nuke
mk install
}
# mk all the others with those
for(DIR in cc $CURCC $OTHERCC){
cd ../$DIR
mk nuke
mk installall
mk clean
}