diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1999-08-16 09:43:12 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1999-08-16 09:43:12 +0000 |
commit | d179eff9bd4cb760c09a5931364ce2c6dac77ecf (patch) | |
tree | 202b2b77f440ffbf0d160763f8993756a1e7153e /sys/arch/hp300/stand/libsaz | |
parent | ac1b38ac019548d858278911a2672d18a25d17f5 (diff) |
Implement real CD booting, aka SYS_CDBOOT, the LIF file small enough to
fit in the begining of an ISO9660 image...
Diffstat (limited to 'sys/arch/hp300/stand/libsaz')
-rw-r--r-- | sys/arch/hp300/stand/libsaz/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sys/arch/hp300/stand/libsaz/Makefile b/sys/arch/hp300/stand/libsaz/Makefile new file mode 100644 index 00000000000..116f29a52c2 --- /dev/null +++ b/sys/arch/hp300/stand/libsaz/Makefile @@ -0,0 +1,36 @@ +# $OpenBSD: Makefile,v 1.1 1999/08/16 09:43:10 downsj Exp $ + +LIB= saz + +.PATH: ${.CURDIR}/../../../../lib/libsa ${.CURDIR}/../libsa + +CFLAGS= -O2 -msoft-float -D__INTERNAL_LIBSA_CREAD \ + -I${.CURDIR} -I${.CURDIR}/../include -I${.CURDIR}/../.. \ + -I${.CURDIR}/../../.. -I${.CURDIR}/../../../.. \ + -I${.CURDIR}/../../../../lib/libsa + +# stand routines +SRCS= alloc.c devopen.c exit.c exec.c getfile.c gets.c globals.c \ + memcmp.c memcpy.c memset.c printf.c strerror.c strncpy.c + +# io routines +SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \ + open.c read.c stat.c write.c cread.c + +# network routines +SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c + +# network info services +SRCS+= bootp.c bootparam.c rarp.c + +# boot filesystems +SRCS+= ufs.c nfs.c rawfs.c cd9660.c + +${OBJS}: ${.CURDIR}/../Makefile.inc + +NOPROFILE= +NOPIC= + +install: + +.include <bsd.lib.mk> |