27 lines
826 B
Makefile
27 lines
826 B
Makefile
# $MirOS: src/bin/mksh/Makefile,v 1.20 2006/11/12 13:21:50 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
|
|
CPPFLAGS+= -DHAVE_SYS_PARAM_H -DHAVE_ARC4RANDOM -DHAVE_ARC4RANDOM_PUSH
|
|
CPPFLAGS+= -DHAVE_SETLOCALE_CTYPE -DHAVE_LANGINFO_CODESET
|
|
CPPFLAGS+= -DHAVE_SETMODE -DHAVE_SETRESUGID -DHAVE_SETGROUPS
|
|
CPPFLAGS+= -DHAVE_STRCASESTR -DHAVE_STRLCPY
|
|
CDIAGFLAGS+= -Wno-cast-qual
|
|
|
|
LINKS+= ${BINDIR}/${PROG} ${BINDIR}/sh
|
|
MLINKS+= ${PROG}.1 sh.1
|
|
|
|
regress: ${PROG} check.pl check.t
|
|
mkdir -p regress-dir
|
|
echo export FNORD=666 >regress-dir/.mkshrc
|
|
HOME=$$(readlink -nf regress-dir) perl ${.CURDIR}/check.pl \
|
|
-s ${.CURDIR}/check.t -v -p ./${PROG} -C pdksh
|
|
|
|
cleandir: clean-regress
|
|
|
|
clean-regress:
|
|
-rm -rf regress-dir
|
|
|
|
.include <bsd.prog.mk>
|