diff options
author | 1996-10-16 12:46:32 +0000 | |
---|---|---|
committer | 1996-10-16 12:46:32 +0000 | |
commit | 6f88be98f819d4ae4a6a2aca95510b8626e421dc (patch) | |
tree | 29fc7887eb4c2708d8da42f8a28c9795dfb39d92 /sys | |
parent | the Wall thing, you know (diff) | |
download | wireguard-openbsd-6f88be98f819d4ae4a6a2aca95510b8626e421dc.tar.xz wireguard-openbsd-6f88be98f819d4ae4a6a2aca95510b8626e421dc.zip |
cleanup, add new files
Diffstat (limited to 'sys')
-rw-r--r-- | sys/lib/libsa/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/lib/libsa/Makefile b/sys/lib/libsa/Makefile index 55771a15699..0004b7adca5 100644 --- a/sys/lib/libsa/Makefile +++ b/sys/lib/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 1996/10/15 09:41:54 mickey Exp $ +# $OpenBSD: Makefile,v 1.8 1996/10/16 12:46:32 mickey Exp $ # $NetBSD: Makefile,v 1.10 1995/10/01 06:00:32 phil Exp $ LIB= sa @@ -13,12 +13,14 @@ AFLAGS+=${XAFLAGS} CFLAGS+=${XCFLAGS} -D_STANDALONE -DCOMPAT_UFS $(DEBUGFLAGS) -I${DIR} -I${DIR}/../.. CPPFLAGS+=${XCPPFLAGS} -all: - echo ${S}/arch/${MACHINE_ARCH}/stand/Makefile.inc +.if ${MACHINE_ARCH}=="i386" +.PATH: ${DIR}/../../arch/${MACHINE_ARCH}/stand +.include "${DIR}/../../arch/${MACHINE_ARCH}/stand/Makefile.inc" +.endif # stand routines -SRCS+= alloc.c bcopy.c memcpy.c exit.c exec.c getfile.c gets.c globals.c \ - printf.c strerror.c strcmp.c memset.c +SRCS+= alloc.c memcpy.c exit.c exec.c getfile.c gets.c globals.c \ + printf.c strerror.c strcmp.c memset.c memcmp.c strncpy.c # io routines SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c ioctl.c \ |