diff options
author | 1999-09-28 02:22:53 +0000 | |
---|---|---|
committer | 1999-09-28 02:22:53 +0000 | |
commit | 8948a76f78a54311b513021a4261706ed3c9fa6b (patch) | |
tree | 661f753d9b6fee809463af78de75cab32686d366 | |
parent | disable optimization on 88k (diff) | |
download | wireguard-openbsd-8948a76f78a54311b513021a4261706ed3c9fa6b.tar.xz wireguard-openbsd-8948a76f78a54311b513021a4261706ed3c9fa6b.zip |
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 \ |