Files
plan9port/src/cmd/acme/mkfile
Dan Cross 156e745be9 all: remove need for -fcommon
Use `extern` where appropriate so that we can remove `-fcommon`
on macOS and others.  On macOS, `-fcommon` generates a number of
linker warnings.

I've tested building on macOS, Linux, FreeBSD, NetBSD, OpenBSD
and illumos.  I am not in a position to test on AIX or other
more esoteric platforms, however.
2025-07-25 12:25:11 -04:00

54 lines
782 B
Makefile

<$PLAN9/src/mkhdr
TARG=acme
DIRS=mail
OFILES=\
acme.$O\
addr.$O\
buff.$O\
cols.$O\
disk.$O\
ecmd.$O\
edit.$O\
elog.$O\
exec.$O\
file.$O\
fsys.$O\
logf.$O\
look.$O\
regx.$O\
rows.$O\
scrl.$O\
text.$O\
time.$O\
util.$O\
wind.$O\
xfid.$O\
dat.$O\
HFILES=dat.h\
edit.h\
fns.h\
<$PLAN9/src/mkone
<$PLAN9/src/mkdirs
edit.$O ecmd.$O elog.$O: edit.h
likeplan9:V:
mkdir -p likeplan9
rm -f likeplan9/*
for i in *.c
do
9 sed 's/->(fcall|lk|b|fr|ref|m|u|u1)\./->/g;
s/\.(fcall|lk|b|fr|ref|m|u|u1)([^a-zA-Z0-9_])/\2/g
s/&(([a-zA-Z0-9_]|->|\.)*)->(fcall|lk|b|fr|ref|m|u|u1)([^a-zA-Z0-9_])/\1\4/g
s/range\(([^,()]+), ([^,()]+)\)/(Range){\1, \2}/g
' $i >likeplan9/$i
done
diffplan9:V:
mk likeplan9
9 diff -n plan9 likeplan9 | sed 's;likeplan9/;;'