xref: /freebsd/usr.sbin/wpa/src/wps/Makefile (revision 3e8eb5c7f4909209c042403ddee340b2ee7003a5)
1.include <src.opts.mk>
2
3.include "../../Makefile.inc"
4
5.include "../../Makefile.crypto"
6
7LIB=	wpawps
8INTERNALLIB=
9
10.PATH:	${WPA_DISTDIR}/src/wps
11
12SRCS=	http_client.c \
13	httpread.c \
14	http_server.c \
15	upnp_xml.c \
16	wps_attr_build.c \
17	wps_attr_parse.c \
18	wps_attr_process.c \
19	wps.c \
20	wps_common.c \
21	wps_dev_attr.c \
22	wps_enrollee.c \
23	wps_registrar.c \
24	wps_upnp_ap.c \
25	wps_upnp.c \
26	wps_upnp_event.c \
27	wps_upnp_ssdp.c \
28	wps_upnp_web.c
29
30.if ${MK_INET6} != "no"
31CFLAGS+= -DCONFIG_IPV6
32.endif
33
34# We are only interested in includes at this point. Not libraries.
35LIBADD=
36
37.include <bsd.lib.mk>
38