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
20 lines
343 B
Makefile
20 lines
343 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH.c:${WPA_SUPPLICANT_DISTDIR}
|
|
|
|
PROG= wpa_passphrase
|
|
SRCS= common.c md5-internal.c md5.c os_unix.c sha1-internal.c sha1-pbkdf2.c sha1.c \
|
|
wpa_passphrase.c
|
|
|
|
CFLAGS+= -DINTERNAL_SHA1
|
|
CFLAGS+= -DINTERNAL_MD5
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
MAN= wpa_passphrase.8
|
|
|
|
.include <bsd.prog.mk>
|