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