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
25CFLAGS+=-DCONFIG_DEBUG_FILE
26
27.if ${MK_INET6} != "no"
28CFLAGS+= -DCONFIG_IPV6
29.endif
30
31# We are only interested in includes at this point. Not libraries.
32LIBADD=
33
34.include <bsd.lib.mk>
35