1ba153e085
Move the hostapd related files from FreeBSD-runtime to a new package n FreeBSD-hostapd The FreeBSD runtime is only intended to have everything for a working FreeBSD installation and hostapd isn't needed for that. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D20958
20 lines
313 B
Makefile
20 lines
313 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH.c:${HOSTAPD_DISTDIR}
|
|
|
|
PACKAGE= hostapd
|
|
PROG= hostapd_cli
|
|
SRCS= cli.c common.c edit.c eloop.c hostapd_cli.c os_unix.c \
|
|
wpa_ctrl.c wpa_debug.c
|
|
|
|
CFLAGS+= -DCONFIG_CTRL_IFACE
|
|
CFLAGS+= -DCONFIG_CTRL_IFACE_UNIX
|
|
|
|
LIBADD+= util
|
|
|
|
MAN= hostapd_cli.8
|
|
|
|
.include <bsd.prog.mk>
|