41fe1fab16
for it's unix domain socket. Before this change wpa_cli would take the first file in the directory that was not "." or "..". Submitted by: Brandon Gooch <jamesbrandongooch@gmail.com> MFC after: 3 days
22 lines
417 B
Makefile
22 lines
417 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH.c:${WPA_SUPPLICANT_DISTDIR}
|
|
|
|
PROG= wpa_cli
|
|
SRCS= wpa_cli.c wpa_ctrl.c os_unix.c
|
|
|
|
MAN= wpa_cli.8
|
|
|
|
CFLAGS+= -DCONFIG_CTRL_IFACE
|
|
CFLAGS+= -DCONFIG_CTRL_IFACE_UNIX
|
|
# enable use of d_type to identify unix domain sockets
|
|
CFLAGS+= -D_DIRENT_HAVE_D_TYPE
|
|
|
|
#CFLAGS+= -DCONFIG_READLINE
|
|
#LDADD+= -ledit -ltermcap
|
|
#DPADD+= ${LIBEDIT} ${LIBTERMCAP}
|
|
|
|
.include <bsd.prog.mk>
|