xref: /freebsd/usr.bin/bomtool/Makefile (revision 43b1ade21e22c0b758f8d83e4707df3024413833)
1PACKAGE=	pkgconf
2
3# from contrib/pkgconf/meson.build:257
4PROG=		bomtool
5SRCS=		main.c
6SRCS+=		getopt_long.c
7
8LIBADD=		pkgconf
9
10PKGCONFDIR=	${SRCTOP}/contrib/pkgconf
11
12WARNS?=		3
13
14CFLAGS+=	-I${SRCTOP}/lib/libpkgconf -I${PKGCONFDIR} -I${PKGCONFDIR}/cli
15
16.PATH:		${PKGCONFDIR}/cli/bomtool
17.PATH:		${PKGCONFDIR}/cli
18.PATH:		${PKGCONFDIR}/man
19
20.include <bsd.prog.mk>
21