mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
a061720cbb
running at the same time causing problems w/ wifi not working.. the patch will be submitted upstream... The next step if someone wants to push it upstream is to break os_unix.c up so that all these other utilities don't need libutil.. Reviewed by: rpaulo
22 lines
500 B
Makefile
22 lines
500 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH.c:${WPA_SUPPLICANT_DISTDIR}
|
|
|
|
PROG= wpa_cli
|
|
SRCS= common.c edit.c eloop.c os_unix.c wpa_cli.c wpa_ctrl.c wpa_debug.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 -I${DESTDIR}/${INCLUDEDIR}/edit
|
|
LDADD+= -ledit -ltermcap -lutil
|
|
DPADD+= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL}
|
|
|
|
.include <bsd.prog.mk>
|