2007-01-12 02:11:03 +01:00
|
|
|
# $MirOS: src/bin/mksh/Makefile,v 1.22 2007/01/12 01:11:03 tg Exp $
|
2005-05-23 05:06:10 +02:00
|
|
|
|
|
|
|
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
|
2006-11-12 14:21:50 +01:00
|
|
|
CPPFLAGS+= -DHAVE_SYS_PARAM_H -DHAVE_ARC4RANDOM -DHAVE_ARC4RANDOM_PUSH
|
2007-01-12 02:11:03 +01:00
|
|
|
CPPFLAGS+= -DHAVE_ATTRIBUTE -DHAVE_ATTRIBUTE_BOUNDED -DHAVE_ATTRIBUTE_USED
|
2006-11-12 14:21:50 +01:00
|
|
|
CPPFLAGS+= -DHAVE_SETLOCALE_CTYPE -DHAVE_LANGINFO_CODESET
|
2006-11-12 13:56:10 +01:00
|
|
|
CPPFLAGS+= -DHAVE_SETMODE -DHAVE_SETRESUGID -DHAVE_SETGROUPS
|
2006-11-12 14:19:06 +01:00
|
|
|
CPPFLAGS+= -DHAVE_STRCASESTR -DHAVE_STRLCPY
|
Clean up the signal mess, saves 172 Bytes:
* 'sigseen' in Build.sh goes away
* Signal name existence is checked in this order:
have our own¹ -> sys_signame[] -> _sys_signame[] -> build our own²
* Signal description existence is checked in this order:
sys_siglist[] -> _sys_siglist[] -> strsignal() -> NULL³
¹ Predefined list of items, for operating systems where we
cannot build² them, i.e. Plan 9 and Minix 3 (e.g. no $CPP -dD)
² The usual cpp(1) stuff
³ Changed later, see below
* Make $CPP test dependent on $NEED_MKSH_SIGNAME (others can
be added here, this is not absolute)
* Make signal name list generation² dependent on $NEED_MKSH_SIGNAME
* Fix check if the generation worked
* Guarantee that sigtraps[*].name and sigtraps[*].mess are valid
C strings; this makes the code shorter *and* removes a few pos-
sible nil pointer dereferences
* Embed autoconf'd usages of sys_sig* / strsignal / mksh_sigpairs
into inittraps()
* Check for each signal 0<=i<=NSIG that
name is not NULL or "" -> replace with ("%d", i)
mess is not NULL or "" -> replace with ("Signal %d", i)
name does not start (case-insensitive) with "SIG" -> name += 3
* In gettrap(), fix check if signal name starts, case-sensitive
or case-insensitive, depending on need, with "SIG" (bug from millert@)
Other changes:
* Build.sh: ac_test[n]() are documented
* Build.sh: ac_test[n]() can have negative prereqs as well now
* Build.sh: use <<-'EOF' consistently
* bump patchlevel to today
2007-01-12 01:25:40 +01:00
|
|
|
CPPFLAGS+= -DHAVE_SYS_SIGLIST -DHAVE_SYS_SIGNAME
|
2005-05-23 13:59:06 +02:00
|
|
|
CDIAGFLAGS+= -Wno-cast-qual
|
2005-05-23 05:06:10 +02:00
|
|
|
|
2006-07-23 21:10:59 +02:00
|
|
|
LINKS+= ${BINDIR}/${PROG} ${BINDIR}/sh
|
|
|
|
MLINKS+= ${PROG}.1 sh.1
|
|
|
|
|
2005-05-23 05:06:10 +02:00
|
|
|
regress: ${PROG} check.pl check.t
|
2007-01-12 02:11:03 +01:00
|
|
|
-rm -rf regress-dir
|
2006-05-08 14:18:49 +02:00
|
|
|
mkdir -p regress-dir
|
|
|
|
echo export FNORD=666 >regress-dir/.mkshrc
|
|
|
|
HOME=$$(readlink -nf regress-dir) perl ${.CURDIR}/check.pl \
|
2006-08-01 14:46:01 +02:00
|
|
|
-s ${.CURDIR}/check.t -v -p ./${PROG} -C pdksh
|
2006-05-08 14:18:49 +02:00
|
|
|
|
|
|
|
cleandir: clean-regress
|
|
|
|
|
|
|
|
clean-regress:
|
|
|
|
-rm -rf regress-dir
|
2005-05-23 05:06:10 +02:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|