diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-16 12:46:33 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-16 12:46:33 +0000 |
commit | 2c8cd3915c7afa5dd16570941801ff49af41dd56 (patch) | |
tree | feb4b72ddd12f56b9f648c2fa8cc08fff617aa71 /sys | |
parent | 277bea7bb9087bb7b83aeb41bebe1bb77f6d3dc9 (diff) |
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 \ |