Add stuff for HP300 that "looks" right.

This commit is contained in:
jtc 1993-09-02 01:50:22 +00:00
parent 8a641487bb
commit afa3cebb3c

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.2 1993/09/02 01:00:42 jtc Exp $
# $Id: Makefile,v 1.3 1993/09/02 01:50:22 jtc Exp $
#
.PATH: ${.CURDIR}/${MACHINE}
@ -18,8 +18,13 @@ NOPROFILE=
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c
SRCS+= bcmp.s bzero.s ffs.s strcat.s strcmp.s strcpy.s strlen.s strncpy.c
SRCS+= scanc.c skpc.c locc.c
SRCS+= htonl.c htons.c ntohl.c ntohs.c
SRCS+= htonl.s htons.s ntohl.s ntohs.s
SRCS+= setjmp.s
.elif (${MACHINE} == "hp300")
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c
SRCS+= bcmp.s bzero.s ffs.c strcat.c strcmp.s strcpy.s strlen.s strncpy.s
SRCS+= scanc.c skpc.c locc.c
SRCS+= htonl.s htons.s ntohl.s ntohs.s
.else
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c
SRCS+= bcmp.c bzero.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c
@ -27,5 +32,4 @@ SRCS+= scanc.c skpc.c locc.c
SRCS+= htonl.c htons.c ntohl.c ntohs.c
.endif
.include <bsd.lib.mk>