blob: 4dab88fba7bbf67f2d0cd6d220fd3bae274bd7cd (
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
25
26
27
28
|
# $OpenBSD: Makefile,v 1.6 2019/01/18 01:24:07 pd Exp $
.if ${MACHINE} == "amd64"
.PATH: ${.CURDIR}/../vmd
PROG= vmctl
SRCS= vmctl.c main.c atomicio.c
SRCS+= vioqcow2.c vioraw.c log.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 -lpthread
DPADD+= ${LIBUTIL} ${LIBPTHREAD}
PATH+=../vmd
.else
NOPROG= yes
.endif
MAN= vmctl.8
.include <bsd.prog.mk>
|