Changed occurance of MACHINE_ARCH == "hp300" to MACHINE_ARCH == "m68k"

This commit is contained in:
briggs 1993-12-05 15:45:52 +00:00
parent d69671a6d5
commit bdb4a3a91a
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.3 (Berkeley) 2/21/91
# $Id: Makefile.inc,v 1.10 1993/12/05 02:21:04 cgd Exp $
# $Id: Makefile.inc,v 1.11 1993/12/05 15:45:52 briggs Exp $
# net sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/net ${.CURDIR}/net
@ -13,7 +13,7 @@ SRCS+= gethostnamadr.c getnetbyaddr.c getnetbyname.c getnetent.c \
res_debug.c res_init.c res_mkquery.c res_query.c res_send.c \
send.c sethostent.c
.if (${MACHINE_ARCH} == "hp300")
.if (${MACHINE_ARCH} == "m68k")
SRCS+= htonl.S htons.S ntohl.S ntohs.S
.elif (${MACHINE_ARCH} == "i386")
SRCS+= htonl.S htons.S ntohl.S ntohs.S

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.6 (Berkeley) 6/4/91
# $Id: Makefile.inc,v 1.15 1993/12/05 02:21:20 cgd Exp $
# $Id: Makefile.inc,v 1.16 1993/12/05 15:46:05 briggs Exp $
# stdlib sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/stdlib ${.CURDIR}/stdlib
@ -11,7 +11,7 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atol.c bsearch.c calloc.c cfree.c \
_rand48.c drand48.c erand48.c jrand48.c lcong48.c lrand48.c \
mrand48.c nrand48.c seed48.c srand48.c
.if (${MACHINE_ARCH} == "hp300")
.if (${MACHINE_ARCH} == "m68k")
SRCS+= abs.S div.c labs.c ldiv.c atof.c
.elif (${MACHINE_ARCH} == "i386")
SRCS+= abs.S div.S labs.S ldiv.S atof.c

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.6 (Berkeley) 3/5/91
# $Id: Makefile.inc,v 1.16 1993/12/05 02:21:38 cgd Exp $
# $Id: Makefile.inc,v 1.17 1993/12/05 15:46:29 briggs Exp $
# string sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/string ${.CURDIR}/string
@ -7,7 +7,7 @@
SRCS+= memccpy.c strcasecmp.c strcoll.c strdup.c strerror.c \
strftime.c strmode.c strtok.c strxfrm.c
.if (${MACHINE_ARCH} == "hp300")
.if (${MACHINE_ARCH} == "m68k")
SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.c memset.c \
rindex.S strcat.c strcmp.S strcpy.S strcspn.c strlen.S \
strncat.c strncmp.S strncpy.S strpbrk.c strsep.c \