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