diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-01-17 08:33:08 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-01-17 08:33:08 +0000 |
commit | 316d268ee39e01f3142870210fbd987b6ff2c560 (patch) | |
tree | bc7cac01fe3e1ad751789f71793665a4fad8dc55 /sys/arch/hp300/stand/libsa/Makefile | |
parent | cd74f171ba09aeab84ca45e1fc7af11b7f2caee1 (diff) |
hp300 bootblocks, sync'd with NetBSD 011697, with changes and a new build
method.
Diffstat (limited to 'sys/arch/hp300/stand/libsa/Makefile')
-rw-r--r-- | sys/arch/hp300/stand/libsa/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/arch/hp300/stand/libsa/Makefile b/sys/arch/hp300/stand/libsa/Makefile index 8ba5d23934c..848198d2efa 100644 --- a/sys/arch/hp300/stand/libsa/Makefile +++ b/sys/arch/hp300/stand/libsa/Makefile @@ -1,18 +1,21 @@ -# $NetBSD: Makefile,v 1.4 1996/01/30 19:47:32 thorpej Exp $ +# $OpenBSD: Makefile,v 1.3 1997/01/17 08:33:06 downsj Exp $ +# $NetBSD: Makefile,v 1.5 1996/06/26 17:44:42 thorpej Exp $ LIB= sa .PATH: ${.CURDIR}/../../../../lib/libsa +.PATH: ${.CURDIR}/.. # Don't need these now... # DEBUGFLAGS=-DNETIF_DEBUG -DRPC_DEBUG -DNFS_DEBUG -DRARP_DEBUG -DNET_DEBUG -CFLAGS+=-DSTANDALONE -DCOMPAT_UFS ${DEBUGFLAGS} +CFLAGS+=-DSTANDALONE -DCOMPAT_UFS -DNO_LSEEK ${DEBUGFLAGS} +CFLAGS+=-I${.CURDIR}/.. CFLAGS+=-I${.CURDIR}/../../../.. -I${.CURDIR}/../../../../lib/libsa # stand routines -SRCS= alloc.c bcopy.c exit.c exec.c getfile.c gets.c globals.c \ - memcpy.c printf.c strerror.c +SRCS= alloc.c exit.c exec.c getfile.c gets.c globals.c \ + memcmp.c memcpy.c memset.c printf.c strerror.c # io routines SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \ @@ -25,11 +28,10 @@ SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c SRCS+= bootp.c bootparam.c rarp.c # boot filesystems -SRCS+= ufs.c nfs.c +SRCS+= ufs.c nfs.c rawfs.o NOPROFILE= NOPIC= -OBJMACHINE= install: |