Makefile revision 1.5
1#	$Id: Makefile,v 1.5 1993/12/05 14:51:56 cgd Exp $
2
3.if exists(${.CURDIR}/${MACHINE})
4.PATH:	${.CURDIR}/${MACHINE}
5.include "${.CURDIR}/${MACHINE}/Makefile.inc"
6AINC+= -I${.CURDIR}/${MACHINE}
7.endif
8
9.if exists(${.CURDIR}/${MACHINE_ARCH}) && (${MACHINE} != ${MACHINE_ARCH})
10.PATH:	${.CURDIR}/${MACHINE_ARCH}
11.include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc"
12AINC+= -I${.CURDIR}/${MACHINE_ARCH}
13.endif
14
15OBJS+= ${ASM}
16POBJS+=	${ASM:.o=.po}
17CLEANFILES+= ${ASM} ${POBJS}
18
19.if exists(${.CURDIR}/${MACHINE}) || exists(${.CURDIR}/${MACHINE_ARCH})
20LIB=	${MACHINE}
21
22.include <bsd.lib.mk>
23.else
24all:
25clean:
26cleandir:
27depend:
28install:
29obj:
30.endif
31