diff options
Diffstat (limited to 'sys/arch/hp300/stand/libsa/Makefile')
-rw-r--r-- | sys/arch/hp300/stand/libsa/Makefile | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/sys/arch/hp300/stand/libsa/Makefile b/sys/arch/hp300/stand/libsa/Makefile index 865b582138b..191d11fd68d 100644 --- a/sys/arch/hp300/stand/libsa/Makefile +++ b/sys/arch/hp300/stand/libsa/Makefile @@ -1,23 +1,16 @@ -# $OpenBSD: Makefile,v 1.9 1997/07/13 07:21:55 downsj Exp $ -# $NetBSD: Makefile,v 1.5 1996/06/26 17:44:42 thorpej Exp $ +# $OpenBSD: Makefile,v 1.10 1997/07/14 08:14:46 downsj 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 -# DEBUGFLAGS+=-DEXEC_DEBUG - -CFLAGS+=-Dhp300 -DSTANDALONE -DCOMPAT_UFS -DNO_LSEEK -CFLAGS+=-D__INTERNAL_LIBSA_CREAD -DHEAP_LIMIT="0xffffdfff" -CFLAGS+=${DEBUGFLAGS} -I${.CURDIR}/.. -CFLAGS+=-I${.CURDIR}/../.. -I${.CURDIR}/../../.. -CFLAGS+=-I${.CURDIR}/../../../.. -I${.CURDIR}/../../../../lib/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 exit.c exec.c getfile.c gets.c globals.c \ +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 @@ -31,7 +24,9 @@ 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 rawfs.o +SRCS+= ufs.c nfs.c rawfs.c + +${OBJS}: ${.CURDIR}/../Makefile.inc NOPROFILE= NOPIC= |