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