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 common.c \ 15 edit.c \ 16 eloop.c \ 17 ip_addr.c \ 18 os_unix.c \ 19 uuid.c \ 20 wpa_debug.c \ 21 wpabuf.c 22 23CFLAGS+=-DCONFIG_DEBUG_FILE 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