diff options
author | 2001-12-25 21:43:45 +0000 | |
---|---|---|
committer | 2001-12-25 21:43:45 +0000 | |
commit | 88cf9b8fc9ae06c4b34bea491881a3e1fc576b2b (patch) | |
tree | 63a95460e06f5691d8a169bd10f2f5674b7e35ec | |
parent | bad miod (diff) | |
download | wireguard-openbsd-88cf9b8fc9ae06c4b34bea491881a3e1fc576b2b.tar.xz wireguard-openbsd-88cf9b8fc9ae06c4b34bea491881a3e1fc576b2b.zip |
Oops, I barfed there, too.
-rw-r--r-- | sys/arch/mac68k/conf/Makefile.mac68k | 3 | ||||
-rw-r--r-- | sys/arch/sparc/conf/Makefile.sparc | 3 | ||||
-rw-r--r-- | sys/arch/sun3/conf/Makefile.sun3 | 7 |
3 files changed, 8 insertions, 5 deletions
diff --git a/sys/arch/mac68k/conf/Makefile.mac68k b/sys/arch/mac68k/conf/Makefile.mac68k index f7e404d7e57..bd7d9b86120 100644 --- a/sys/arch/mac68k/conf/Makefile.mac68k +++ b/sys/arch/mac68k/conf/Makefile.mac68k @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mac68k,v 1.24 2001/12/24 23:12:14 miod Exp $ +# $OpenBSD: Makefile.mac68k,v 1.25 2001/12/25 21:43:45 miod Exp $ # $NetBSD: Makefile.mac68k,v 1.53 1997/04/15 06:11:38 scottr Exp $ # Makefile for OpenBSD @@ -29,6 +29,7 @@ CC?= cc CPP?= cpp LD?= ld MKDEP?= mkdep +SIZE?= size STRIP?= strip # source tree is located via $S relative to the compilation directory diff --git a/sys/arch/sparc/conf/Makefile.sparc b/sys/arch/sparc/conf/Makefile.sparc index 5e9545e3759..ba065d803e3 100644 --- a/sys/arch/sparc/conf/Makefile.sparc +++ b/sys/arch/sparc/conf/Makefile.sparc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sparc,v 1.20 2001/12/24 23:12:14 miod Exp $ +# $OpenBSD: Makefile.sparc,v 1.21 2001/12/25 21:43:47 miod Exp $ # $NetBSD: Makefile.sparc,v 1.32.4.1 1996/06/12 20:26:32 pk Exp $ # Makefile for OpenBSD @@ -29,6 +29,7 @@ CC?= cc CPP?= cpp LD?= ld MKDEP?= mkdep +SIZE?= size STRIP?= strip # source tree is located via $S relative to the compilation directory diff --git a/sys/arch/sun3/conf/Makefile.sun3 b/sys/arch/sun3/conf/Makefile.sun3 index 3125891b152..cc2fe966aa5 100644 --- a/sys/arch/sun3/conf/Makefile.sun3 +++ b/sys/arch/sun3/conf/Makefile.sun3 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sun3,v 1.29 2001/12/24 23:12:14 miod Exp $ +# $OpenBSD: Makefile.sun3,v 1.30 2001/12/25 21:43:47 miod Exp $ # $NetBSD: Makefile.sun3,v 1.51 1996/09/09 21:07:08 mycroft Exp $ # Makefile for OpenBSD @@ -28,8 +28,9 @@ AS?= as CC?= cc CPP?= cpp LD?= ld +MKDEP?= mkdep +SIZE?= size STRIP?= strip -COPTS?= -O2 # source tree is located via $S relative to the compilation directory .ifndef S @@ -44,7 +45,7 @@ CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main CMACHFLAGS= -m68020 -msoft-float - +COPTS?= -O2 CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} ${CMACHFLAGS} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE ${CMACHFLAGS} LINKFLAGS= -N -Ttext 0E004000 -e start |