xref: /freebsd/usr.sbin/wpa/src/utils/Makefile (revision 67518c9f565b61bc5eebe33b6a956e2cc9b3f223)
1.include <src.opts.mk>
2
3.include "../../Makefile.inc"
4
5.include "../../Makefile.crypto"
6
7LIB=	wpautils
8INTERNALLIB=
9
10.PATH:	${WPA_DISTDIR}/src/utils
11
12SRCS=	base64.c \
13	bitfield.c \
14	crc32.c \
15	common.c \
16	config.c \
17	edit.c \
18	eloop.c \
19	ip_addr.c \
20	os_unix.c \
21	uuid.c \
22	wpa_debug.c \
23	wpabuf.c
24
25.if ${MK_INET6} != "no"
26CFLAGS+= -DCONFIG_IPV6
27.endif
28
29# We are only interested in includes at this point. Not libraries.
30LIBADD=
31
32.include <bsd.lib.mk>
33