diff options
Diffstat (limited to 'bin/ksh')
-rw-r--r-- | bin/ksh/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile index c5c1b33dc74..e777e7b9405 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 1999/06/15 01:18:32 millert Exp $ +# $OpenBSD: Makefile,v 1.12 1999/09/28 02:18:30 smurph Exp $ PROG= ksh SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ @@ -10,6 +10,10 @@ DEFS= -DHAVE_CONFIG_H -Wall -Wno-unused CFLAGS+=${DEFS} -I. -I${.CURDIR} -DKSH MAN= ksh.1 sh.1 +.if (${MACHINE_ARCH} == "m88k") +CFLAGS+=-O0 +.endif + CLEANFILES+= siglist.out emacs.out LINKS= ${BINDIR}/ksh ${BINDIR}/rksh |