blob: b2025bf7648095869bcbca07a1f074191839414a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.4 2007/08/01 21:26:23 miod Exp $
MAN+= arm_sync_icache.2 arm_drain_writebuf.2
MANSUBDIR=armish zaurus
.if ${MACHINE} == "armish" || ${MACHINE} == "zaurus"
NOPIC=
SRCS+= arm_sync_icache.c arm_drain_writebuf.c
.include <bsd.lib.mk>
.else
NOPROG=
.include <bsd.prog.mk>
.endif
|