blob: 790e451757b1b2baf1d508750c47b2a645a5c38e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.1 2019/01/23 13:12:19 florian Exp $
PROG= unwindctl
SRCS= unwindctl.c parser.c
MAN= unwindctl.8
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sbin/unwind
LDADD= -lutil
DPADD= ${LIBUTIL}
.include <bsd.prog.mk>
|