blob: 9335dde79d19fae142d7a9499835d4e25a225fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.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>
|