blob: 5b6768fc376ff9ebe17d50e18a5c90ce9bc5ff93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.18 2008/08/22 00:48:33 bluhm Exp $
# $NetBSD: Makefile,v 1.4 1995/04/20 22:41:08 cgd Exp $
SUBDIR+= copy crypto ddb fifofs kern net ptrace sys uvm dev
.if exists(arch/${MACHINE})
SUBDIR+= arch/${MACHINE}
.endif
.if exists(arch/${MACHINE_ARCH}) && ${MACHINE} != ${MACHINE_ARCH}
SUBDIR+= arch/${MACHINE_ARCH}
.endif
install:
.include <bsd.subdir.mk>
|