blob: 9e3ffe4bfebc00efe73cc1ee61a017ef16b24111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.10 2012/09/06 16:39:07 riz Exp $
LIB= perfuse
LIBDPLIBS+= puffs ${.CURDIR}/../libpuffs
PERFUSE_OPT_DEBUG_FLAGS= -g -DPERFUSE_DEBUG
CWARNFLAGS.clang+= -Wno-format-security
#CFLAGS+= ${PERFUSE_OPT_DEBUG_FLAGS}
CPPFLAGS+= -I${.CURDIR}
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libpuffs
SRCS= perfuse.c ops.c subr.c debug.c
MAN= libperfuse.3
WARNS?= 5
INCS= perfuse.h
INCSDIR= /usr/include
.include <bsd.lib.mk>
|