blob: 2f7dc99ef8ebe5fb67072cb00f25e4f6f8ece9cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.2 2015/12/05 20:26:38 reyk Exp $
.if ${MACHINE} == "amd64"
PROG= vmctl
SRCS= vmctl.c main.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../vmd
LDADD+= -lutil
DPADD+= ${LIBUTIL}
.else
NOPROG= yes
.endif
MAN= vmctl.8
.include <bsd.prog.mk>
|