xref: /openbsd/usr.sbin/ldomctl/Makefile (revision cecf84d4)
1#	$OpenBSD: Makefile,v 1.8 2012/11/24 11:50:45 kettenis Exp $
2
3.if ${MACHINE} == "sparc64"
4
5.PATH:	${.CURDIR}/../ldomd
6
7PROG=	ldomctl
8SRCS=	ldomctl.c ds.c mdesc.c util.c mdstore.c pri.c config.c parse.y
9CFLAGS+=-Wall
10CFLAGS+=-I${.CURDIR}/../ldomd -I${.CURDIR}
11DEBUG= -g
12
13.else
14
15NOPROG=	yes
16
17.endif
18
19MAN=	ldomctl.8
20MANSUBDIR=sparc64
21
22.include <bsd.prog.mk>
23