2006-11-17 19:38:51 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2009-03-02 04:12:41 +00:00
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
|
|
|
|
.PATH.c:${WPA_SUPPLICANT_DISTDIR}
|
2006-11-17 19:38:51 +00:00
|
|
|
|
|
|
|
PROG= wpa_passphrase
|
2013-07-04 21:12:58 +00:00
|
|
|
SRCS= common.c md5-internal.c md5.c os_unix.c sha1-internal.c sha1-pbkdf2.c sha1.c \
|
|
|
|
wpa_passphrase.c
|
2006-11-17 19:38:51 +00:00
|
|
|
|
2007-07-11 16:04:08 +00:00
|
|
|
CFLAGS+= -DINTERNAL_SHA1
|
|
|
|
CFLAGS+= -DINTERNAL_MD5
|
|
|
|
|
2014-11-25 16:57:27 +00:00
|
|
|
LIBADD+= util
|
2014-06-22 10:00:33 +00:00
|
|
|
|
2006-11-17 19:38:51 +00:00
|
|
|
MAN= wpa_passphrase.8
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|