15 lines
409 B
Makefile
15 lines
409 B
Makefile
|
# $MirOS: src/bin/mksh/Makefile,v 1.1 2005/05/23 03:06:05 tg Exp $
|
||
|
|
||
|
PROG= mksh
|
||
|
SRCS= alloc.c edit.c eval.c exec.c expr.c funcs.c histrap.c \
|
||
|
jobs.c lex.c main.c misc.c shf.c syn.c tree.c var.c
|
||
|
|
||
|
check:
|
||
|
@cd ${.CURDIR} && ${MAKE} regress V=-v
|
||
|
|
||
|
regress: ${PROG} check.pl check.t
|
||
|
perl ${.CURDIR}/check.pl -s ${.CURDIR}/check.t ${V} \
|
||
|
-p ./${PROG} -C pdksh,sh,ksh,posix,posix-upu
|
||
|
|
||
|
.include <bsd.prog.mk>
|