diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-28 02:22:54 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-28 02:22:54 +0000 |
commit | 9f4a6fa812c9ca6ac0b6df69d6a8dbf9e53a62c1 (patch) | |
tree | 22d40978be55fbc8d9d0c8c520eeb8f08e302cb5 | |
parent | 61a57c6cc97f60fd85aa89be7cc44198db871c2a (diff) |
disabled optimizations for 88k
-rw-r--r-- | usr.bin/make/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index f7ce2d7ba89..b07aae4a25d 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -1,7 +1,12 @@ -# $OpenBSD: Makefile,v 1.8 1998/12/05 00:06:26 espie Exp $ +# $OpenBSD: Makefile,v 1.9 1999/09/28 02:22:53 smurph Exp $ PROG= make CFLAGS+= -I${.CURDIR} -Wall -Wno-char-subscripts -Wno-unused #-Wmissing-prototypes -Wstrict-prototypes + +.if (${MACHINE_ARCH} == "m88k") +CFLAGS+=-O0 +.endif + SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ make.c parse.c str.c suff.c targ.c var.c util.c SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ |