blob: 5bef852a7d4a7a02e35f8c40e3c09de77d46e8f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.3 2006/06/06 00:01:49 drahn Exp $
MAN+= arm_sync_icache.2 arm_drain_writebuf.2
MANSUBDIR=armish cats zaurus
.if ${MACHINE} == "armish" || ${MACHINE} == "cats" || ${MACHINE} == "zaurus"
NOPIC=
SRCS+= arm_sync_icache.c arm_drain_writebuf.c
.include <bsd.lib.mk>
.else
NOPROG=
.include <bsd.prog.mk>
.endif
|