xref: /openbsd/usr.sbin/ldomd/Makefile (revision 274d7c50)
1#	$OpenBSD: Makefile,v 1.6 2019/11/20 18:11:28 kn Exp $
2
3.if ${MACHINE} == "sparc64"
4
5.PATH:	${.CURDIR}/../ldomctl
6
7PROG=	ldomd
8SRCS=	ldomd.c ds.c mdesc.c util.c var-config.c
9CFLAGS+=-Wall
10CFLAGS+=-I${.CURDIR}/../ldomctl
11
12.else
13
14NOPROG=	yes
15
16.endif
17
18MAN=	ldomd.8
19MANSUBDIR=sparc64
20
21.include <bsd.prog.mk>
22