list the files needed on the alpha.

This commit is contained in:
cgd 1995-02-10 17:46:48 +00:00
parent 819bb2cd8c
commit b42e80ba75
4 changed files with 18 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.21 (Berkeley) 5/24/91
# $Id: Makefile.inc,v 1.62 1995/01/11 20:23:59 pk Exp $
# $Id: Makefile.inc,v 1.63 1995/02/10 17:46:48 cgd Exp $
# gen sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/gen ${.CURDIR}/gen
@ -55,6 +55,9 @@ SRCS+= fixunsdfsi.S mul.S umul.S saveregs.S setjmp.S sigsetjmp.S
.elif (${MACHINE_ARCH} == "mips")
SRCS+= _setjmp.S fabs.S frexp.c isinf.S ldexp.S modf.S
SRCS+= setjmp.S
.elif (${MACHINE_ARCH} == "alpha")
SRCS+= _setjmp.S fabs.S frexp.c isinf.c ldexp.c modf.c setjmp.S
SRCS+= sigsetjmp.S
.endif
MAN+= alarm.3 clock.3 confstr.3 ctermid.3 ctime.3 ctype.3 \

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.3 (Berkeley) 2/21/91
# $Id: Makefile.inc,v 1.19 1994/12/22 10:14:30 cgd Exp $
# $Id: Makefile.inc,v 1.20 1995/02/10 17:46:52 cgd Exp $
# net sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/net ${.CURDIR}/net
@ -27,6 +27,9 @@ SRCS+= htonl.S htons.S ntohl.S ntohs.S
SRCS+= htonl.S htons.S ntohl.S ntohs.S
.elif (${MACHINE_ARCH} == "mips")
SRCS+= htonl.S htons.S
.elif (${MACHINE_ARCH} == "alpha")
# XXX should be .S's
SRCS+= htonl.c htons.c ntohl.c ntohs.c
.else
SRCS+= htonl.c htons.c ntohl.c ntohs.c
.endif

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.6 (Berkeley) 6/4/91
# $Id: Makefile.inc,v 1.22 1994/12/22 10:14:56 cgd Exp $
# $Id: Makefile.inc,v 1.23 1995/02/10 17:46:54 cgd Exp $
# stdlib sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/stdlib ${.CURDIR}/stdlib
@ -21,6 +21,9 @@ SRCS+= abs.S div.c labs.c ldiv.c
SRCS+= abs.S div.c labs.c ldiv.c
.elif (${MACHINE_ARCH} == "vax")
SRCS+= abs.S div.c labs.c ldiv.c
.elif (${MACHINE_ARCH} == "alpha")
# XXX should be .S's
SRCS+= abs.c div.c labs.c ldiv.c
.else
SRCS+= abs.c div.c labs.c ldiv.c
.endif

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.6 (Berkeley) 3/5/91
# $Id: Makefile.inc,v 1.32 1994/12/22 10:15:00 cgd Exp $
# $Id: Makefile.inc,v 1.33 1995/02/10 17:46:55 cgd Exp $
# string sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/string ${.CURDIR}/string
@ -48,6 +48,11 @@ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.c memset.c \
rindex.S strcat.c strcmp.S strcpy.c strcspn.c strlen.S \
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.c
.elif (${MACHINE_ARCH} == "alpha")
SRCS+= bcmp.c bcopy.c bzero.c ffs.c index.c memchr.c memcmp.c memset.c \
rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.c \
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.c
.endif
# if no machine specific memmove(3), build one out of bcopy(3).