Makefile revision 1.5
1#	$NetBSD: Makefile,v 1.5 2009/04/23 01:37:55 lukem Exp $
2
3.PATH:	${.CURDIR}/arch
4
5PROG=	cpuctl
6MAN=	cpuctl.8
7SRCS=	cpuctl.c
8
9.if exists(${.CURDIR}/arch/${MACHINE_ARCH}.c)
10SRCS+=	${MACHINE_ARCH}.c
11.if exists(${.CURDIR}/arch/${MACHINE_ARCH}-asm.S)
12SRCS+=	${MACHINE_ARCH}-asm.S
13.endif
14.else
15SRCS+=	noarch.c
16.endif
17
18LDADD+=-lutil
19DPADD+=${LIBUTIL}
20
21.include <bsd.prog.mk>
22