shithub: riscv

ref: 5bfce16c43b5f3e671a0ec1e9c6294bcc18353cf
dir: /sys/src/cmd/upas/smtp/mkfile/

View raw version
</$objtype/mkfile

TARG = smtpd\
	smtp\

OFILES=

LIB=../common/libcommon.a$O\

HFILES=../common/common.h\
	../common/sys.h\
	smtpd.h\
	smtp.h\

BIN=/$objtype/bin/upas
UPDATE=\
	greylist.c\
	mkfile\
	mxdial.c\
	rfc822.y\
	rmtdns.c\
	smtpd.y\
	spam.c\
	$HFILES\
	${OFILES:%.$O=%.c}\
	${TARG:%=%.c}\

</sys/src/cmd/mkmany
CFLAGS=$CFLAGS -I../common -D'SPOOL="/mail"'

$O.smtpd:	smtpd.tab.$O rmtdns.$O spam.$O rfc822.tab.$O greylist.$O
$O.smtp:	rfc822.tab.$O mxdial.$O

smtpd.tab.c:	smtpd.y
	yacc -o xxx smtpd.y
	sed 's/yy/zz/g' < xxx > $target
	rm xxx

rfc822.tab.c:	rfc822.y
	yacc -d -o $target rfc822.y

clean:V:
	rm -f *.[$OS] [$OS].$TARG smtpd.tab.c rfc822.tab.c y.tab.? y.debug $TARG

../common/libcommon.a$O:
	@{ 	
		cd ../common
		mk
	}