d4335dcc83
Move the wpa related files from FreeBSD-runtime to a new package named FreeBSD-wpa The FreeBSD runtime is only intended to have everything for a working FreeBSD installation and wpa isn't needed for that. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D20957
18 lines
317 B
Makefile
18 lines
317 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH.c:${WPA_SUPPLICANT_DISTDIR} \
|
|
${WPA_DISTDIR}/src/drivers
|
|
|
|
PACKAGE= wpa
|
|
PROG= wpa_priv
|
|
SRCS= drivers.c os_unix.c eloop.c common.c wpa_debug.c wpabuf.c wpa_priv.c \
|
|
driver_common.c l2_packet_freebsd.c
|
|
|
|
LIBADD= pcap
|
|
|
|
.include "../Makefile.crypto"
|
|
|
|
.include <bsd.prog.mk>
|