Don't barf if there is not arch dep library for this arch.

This commit is contained in:
brezak 1993-09-20 20:36:19 +00:00
parent b6549340cc
commit 5b56bf74aa

View File

@ -1,7 +1,6 @@
# Makefile,v 1.6 1993/09/10 23:32:17 jtc Exp
ARCH?=${MACHINE}
LIB= ${ARCH}
.if exists (${.CURDIR}/${MACHINE}/Makefile.inc)
.PATH: ${.CURDIR}/${MACHINE}
@ -21,4 +20,10 @@ OBJS+= ${ASM}
POBJS+= ${ASM:.o=.po}
CLEANFILES+= ${ASM} ${POBJS}
.if exists (${.CURDIR}/${ARCH})
LIB= ${ARCH}
.include <bsd.lib.mk>
.else
all:
.endif