]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/wpa/wpa_supplicant/Makefile
Add ELF Tool Chain's brandelf(1) to contrib
[FreeBSD/FreeBSD.git] / usr.sbin / wpa / wpa_supplicant / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 .include "${.CURDIR}/../Makefile.inc"
6
7 .PATH.c:${WPA_SUPPLICANT_DISTDIR} \
8         ${WPA_DISTDIR}/src/drivers
9
10 PROG=   wpa_supplicant
11 SRCS=   ap_drv_ops.c base64.c blacklist.c bss.c common.c config.c \
12         config_file.c ctrl_iface.c ctrl_iface_unix.c driver_bsd.c \
13         driver_common.c driver_ndis.c driver_wired.c drivers.c \
14         eap_register.c eloop.c events.c gas.c gas_query.c hs20.c \
15         hs20_supplicant.c http_client.c http_server.c httpread.c \
16         hw_features_common.c \
17         ieee802_11_common.c ieee802_11_shared.c \
18         interworking.c l2_packet_freebsd.c main.c \
19         notify.c offchannel.c os_unix.c peerkey.c pmksa_cache.c \
20         preauth.c scan.c upnp_xml.c uuid.c wmm_ac.c \
21         wpa.c wpa_common.c wpa_debug.c \
22         wpa_ft.c wpa_ie.c wpa_supplicant.c wpabuf.c wpas_glue.c wps.c \
23         wps_attr_build.c wps_attr_parse.c wps_attr_process.c \
24         wps_common.c wps_dev_attr.c wps_enrollee.c wps_registrar.c \
25         wps_supplicant.c wps_upnp.c wps_upnp_ap.c wps_upnp_event.c \
26         wps_upnp_ssdp.c wps_upnp_web.c Packet32.c
27
28 MAN=    wpa_supplicant.8 wpa_supplicant.conf.5
29
30 .if ${MK_EXAMPLES} != "no"
31 FILESDIR= ${SHAREDIR}/examples/etc
32 .PATH:  ${WPA_SUPPLICANT_DISTDIR}
33 FILES=  wpa_supplicant.conf
34 .endif
35
36 CFLAGS+=-DCONFIG_BACKEND_FILE \
37         -DCONFIG_DEBUG_SYSLOG \
38         -DCONFIG_DRIVER_BSD \
39         -DCONFIG_DRIVER_NDIS \
40         -DCONFIG_DRIVER_WIRED \
41         -DCONFIG_PEERKEY \
42         -DCONFIG_SMARTCARD \
43         -DCONFIG_TERMINATE_ONLASTIF \
44         -DCONFIG_WPS \
45         -DCONFIG_WPS2 \
46         -DCONFIG_WPS_UPNP \
47         -DCONFIG_TLS=openssl \
48         -DCONFIG_IEEE80211R \
49         -DCONFIG_INTERWORKING \
50         -DCONFIG_PRIVSEP \
51         -DCONFIG_HS20 \
52         -DCONFIG_GAS \
53         -DPKCS12_FUNCS
54 #CFLAGS+= -g
55 LIBADD= pcap util
56
57 # User customizations to the wpa_supplicant build environment
58 CFLAGS+=${WPA_SUPPLICANT_CFLAGS}
59 #DPADD+=${WPA_SUPPLICANT_DPADD}
60 LDADD+=${WPA_SUPPLICANT_LDADD}
61 #LDFLAGS+=${WPA_SUPPLICANT_LDFLAGS}
62
63 .if ${MK_WPA_SUPPLICANT_EAPOL} != "no"
64 CFLAGS+=-DEAP_GTC \
65         -DEAP_LEAP \
66         -DEAP_MD5 \
67         -DEAP_MSCHAPv2 \
68         -DEAP_OTP \
69         -DEAP_PEAP \
70         -DEAP_PSK \
71         -DEAP_TLS \
72         -DEAP_TTLS \
73         -DEAP_GTC \
74         -DEAP_OTP \
75         -DEAP_LEAP \
76         -DIEEE8021X_EAPOL
77 SRCS+=  chap.c \
78         eap.c \
79         eap_common.c \
80         eap_gtc.c \
81         eap_leap.c \
82         eap_md5.c \
83         eap_methods.c \
84         eap_mschapv2.c \
85         eap_otp.c \
86         eap_peap.c \
87         eap_peap_common.c \
88         eap_psk.c \
89         eap_psk_common.c \
90         eap_tls.c \
91         eap_tls_common.c \
92         eap_ttls.c \
93         eapol_supp_sm.c \
94         ms_funcs.c \
95         mschapv2.c
96 TLS_FUNCS=y
97 NEED_AES_EAX=y
98 NEED_AES_ENCBLOCK=y
99 NEED_AES_OMAC1=y
100 .endif
101
102 .if !empty(CFLAGS:M-DCONFIG_WPS)
103 NEED_AES_CBC=y
104 .endif
105
106 .if !empty(CFLAGS:M*-DEAP_AKA)
107 SRCS+=  eap_aka.c
108 NEED_SIM_COMMON=y
109 NEED_AES_CBC=y
110 .endif
111
112 .if !empty(CFLAGS:M*-DEAP_SIM)
113 SRCS+=  eap_sim.c
114 NEED_SIM_COMMON=y
115 NEED_AES_CBC=y
116 .endif
117
118 .if defined(NEED_SIM_COMMON)
119 SRCS+=  eap_sim_common.c
120 NEED_FIPS186_2_PRF=y
121 .endif
122
123 # PC/SC interface for smartcards (USIM, GSM SIM)
124 # GSM/UMTS authentication algorithm (for EAP-SIM/EAP-AKA)
125 # NB: requires devel/pcsc-lite
126 #
127 # WPA_SUPPLICANT_CFLAGS=-DEAP_AKA -DPCSC_FUNCS -I/usr/local/include/PCSC
128 # WPA_SUPPLICANT_LDADD=-L/usr/local/lib
129 #
130 .if !empty(CFLAGS:M*-DPCSC_FUNCS)
131 SRCS+=  pcsc_funcs.c
132 LIBADD+=        pcslite pthread
133 .endif
134
135 .if !empty(CFLAGS:M*-DEAP_GPSK)
136 CFLAGS+=-DEAP_GPSK_SHA256
137 SRCS+=  eap_gpsk.c \
138         eap_gpsk_common.c
139 NEED_AES_OMAC1=y
140 .endif
141
142 .if !empty(CFLAGS:M*-DEAP_PAX)
143 SRCS+=  eap_pax.c \
144         eap_pax_common.c
145 .endif
146
147 .if !empty(CFLAGS:M*-DEAP_SAKE)
148 SRCS+=  eap_sake.c \
149         eap_sake_common.c
150 .endif
151
152 .include "${.CURDIR}/../Makefile.crypto"
153
154 .include <bsd.prog.mk>