]> git.ipfire.org Git - thirdparty/hostap.git/blob - hostapd/Makefile
Re-initialize hostapd/wpa_supplicant git repository based on 0.6.3 release
[thirdparty/hostap.git] / hostapd / Makefile
1 ifndef CC
2 CC=gcc
3 endif
4
5 ifndef CFLAGS
6 CFLAGS = -MMD -O2 -Wall -g
7 endif
8
9 # define HOSTAPD_DUMP_STATE to include SIGUSR1 handler for dumping state to
10 # a file (undefine it, if you want to save in binary size)
11 CFLAGS += -DHOSTAPD_DUMP_STATE
12
13 CFLAGS += -I../src
14 CFLAGS += -I../src/crypto
15 CFLAGS += -I../src/utils
16 CFLAGS += -I../src/common
17
18 # Uncomment following line and set the path to your kernel tree include
19 # directory if your C library does not include all header files.
20 # CFLAGS += -DUSE_KERNEL_HEADERS -I/usr/src/linux/include
21
22 -include .config
23
24 ifndef CONFIG_OS
25 ifdef CONFIG_NATIVE_WINDOWS
26 CONFIG_OS=win32
27 else
28 CONFIG_OS=unix
29 endif
30 endif
31
32 ifeq ($(CONFIG_OS), internal)
33 CFLAGS += -DOS_NO_C_LIB_DEFINES
34 endif
35
36 ifdef CONFIG_NATIVE_WINDOWS
37 CFLAGS += -DCONFIG_NATIVE_WINDOWS
38 LIBS += -lws2_32
39 endif
40
41 OBJS = hostapd.o ieee802_1x.o eapol_sm.o \
42 ieee802_11.o config.o ieee802_11_auth.o accounting.o \
43 sta_info.o wpa.o ctrl_iface.o \
44 drivers.o preauth.o pmksa_cache.o beacon.o \
45 hw_features.o wme.o ap_list.o reconfig.o \
46 mlme.o vlan_init.o ieee802_11h.o wpa_auth_ie.o
47
48 OBJS += ../src/utils/eloop.o
49 OBJS += ../src/utils/common.o
50 OBJS += ../src/utils/wpa_debug.o
51 OBJS += ../src/utils/wpabuf.o
52 OBJS += ../src/utils/os_$(CONFIG_OS).o
53 OBJS += ../src/utils/ip_addr.o
54
55 OBJS += ../src/common/wpa_common.o
56
57 OBJS += ../src/radius/radius.o
58 OBJS += ../src/radius/radius_client.o
59
60 OBJS += ../src/crypto/md5.o
61 OBJS += ../src/crypto/rc4.o
62 OBJS += ../src/crypto/md4.o
63 OBJS += ../src/crypto/sha1.o
64 OBJS += ../src/crypto/des.o
65 OBJS += ../src/crypto/aes_wrap.o
66 OBJS += ../src/crypto/aes.o
67
68 HOBJS=../src/hlr_auc_gw/hlr_auc_gw.o ../src/utils/common.o ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).o ../src/hlr_auc_gw/milenage.o ../src/crypto/aes_wrap.o ../src/crypto/aes.o
69
70 CFLAGS += -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX
71
72 ifdef CONFIG_IAPP
73 CFLAGS += -DCONFIG_IAPP
74 OBJS += iapp.o
75 endif
76
77 ifdef CONFIG_RSN_PREAUTH
78 CFLAGS += -DCONFIG_RSN_PREAUTH
79 CONFIG_L2_PACKET=y
80 endif
81
82 ifdef CONFIG_PEERKEY
83 CFLAGS += -DCONFIG_PEERKEY
84 OBJS += peerkey.o
85 endif
86
87 ifdef CONFIG_IEEE80211W
88 CFLAGS += -DCONFIG_IEEE80211W
89 NEED_SHA256=y
90 endif
91
92 ifdef CONFIG_IEEE80211R
93 CFLAGS += -DCONFIG_IEEE80211R
94 OBJS += wpa_ft.o
95 NEED_SHA256=y
96 endif
97
98 ifdef CONFIG_DRIVER_HOSTAP
99 CFLAGS += -DCONFIG_DRIVER_HOSTAP
100 OBJS += driver_hostap.o
101 endif
102
103 ifdef CONFIG_DRIVER_WIRED
104 CFLAGS += -DCONFIG_DRIVER_WIRED
105 OBJS += driver_wired.o
106 endif
107
108 ifdef CONFIG_DRIVER_MADWIFI
109 CFLAGS += -DCONFIG_DRIVER_MADWIFI
110 OBJS += driver_madwifi.o
111 CONFIG_L2_PACKET=y
112 endif
113
114 ifdef CONFIG_DRIVER_PRISM54
115 CFLAGS += -DCONFIG_DRIVER_PRISM54
116 OBJS += driver_prism54.o
117 endif
118
119 ifdef CONFIG_DRIVER_NL80211
120 CFLAGS += -DCONFIG_DRIVER_NL80211
121 OBJS += driver_nl80211.o radiotap.o
122 LIBS += -lnl
123 endif
124
125 ifdef CONFIG_DRIVER_BSD
126 CFLAGS += -DCONFIG_DRIVER_BSD
127 OBJS += driver_bsd.o
128 CONFIG_L2_PACKET=y
129 CONFIG_DNET_PCAP=y
130 CONFIG_L2_FREEBSD=y
131 endif
132
133 ifdef CONFIG_DRIVER_TEST
134 CFLAGS += -DCONFIG_DRIVER_TEST
135 OBJS += driver_test.o
136 endif
137
138 ifdef CONFIG_L2_PACKET
139 ifdef CONFIG_DNET_PCAP
140 ifdef CONFIG_L2_FREEBSD
141 LIBS += -lpcap
142 OBJS += ../src/l2_packet/l2_packet_freebsd.o
143 else
144 LIBS += -ldnet -lpcap
145 OBJS += ../src/l2_packet/l2_packet_pcap.o
146 endif
147 else
148 OBJS += ../src/l2_packet/l2_packet_linux.o
149 endif
150 endif
151
152
153 ifdef CONFIG_EAP_MD5
154 CFLAGS += -DEAP_MD5
155 OBJS += ../src/eap_server/eap_md5.o
156 CHAP=y
157 endif
158
159 ifdef CONFIG_EAP_TLS
160 CFLAGS += -DEAP_TLS
161 OBJS += ../src/eap_server/eap_tls.o
162 TLS_FUNCS=y
163 endif
164
165 ifdef CONFIG_EAP_PEAP
166 CFLAGS += -DEAP_PEAP
167 OBJS += ../src/eap_server/eap_peap.o
168 TLS_FUNCS=y
169 CONFIG_EAP_TLV=y
170 CONFIG_EAP_MSCHAPV2=y
171 endif
172
173 ifdef CONFIG_EAP_TTLS
174 CFLAGS += -DEAP_TTLS
175 OBJS += ../src/eap_server/eap_ttls.o
176 TLS_FUNCS=y
177 CHAP=y
178 endif
179
180 ifdef CONFIG_EAP_MSCHAPV2
181 CFLAGS += -DEAP_MSCHAPv2
182 OBJS += ../src/eap_server/eap_mschapv2.o
183 MS_FUNCS=y
184 endif
185
186 ifdef CONFIG_EAP_GTC
187 CFLAGS += -DEAP_GTC
188 OBJS += ../src/eap_server/eap_gtc.o
189 endif
190
191 ifdef CONFIG_EAP_SIM
192 CFLAGS += -DEAP_SIM
193 OBJS += ../src/eap_server/eap_sim.o
194 CONFIG_EAP_SIM_COMMON=y
195 endif
196
197 ifdef CONFIG_EAP_AKA
198 CFLAGS += -DEAP_AKA
199 OBJS += ../src/eap_server/eap_aka.o
200 CONFIG_EAP_SIM_COMMON=y
201 endif
202
203 ifdef CONFIG_EAP_SIM_COMMON
204 OBJS += ../src/eap_common/eap_sim_common.o
205 # Example EAP-SIM/AKA interface for GSM/UMTS authentication. This can be
206 # replaced with another file implementating the interface specified in
207 # eap_sim_db.h.
208 OBJS += ../src/eap_server/eap_sim_db.o
209 NEED_FIPS186_2_PRF=y
210 endif
211
212 ifdef CONFIG_EAP_PAX
213 CFLAGS += -DEAP_PAX
214 OBJS += ../src/eap_server/eap_pax.o ../src/eap_common/eap_pax_common.o
215 endif
216
217 ifdef CONFIG_EAP_PSK
218 CFLAGS += -DEAP_PSK
219 OBJS += ../src/eap_server/eap_psk.o ../src/eap_common/eap_psk_common.o
220 endif
221
222 ifdef CONFIG_EAP_SAKE
223 CFLAGS += -DEAP_SAKE
224 OBJS += ../src/eap_server/eap_sake.o ../src/eap_common/eap_sake_common.o
225 endif
226
227 ifdef CONFIG_EAP_GPSK
228 CFLAGS += -DEAP_GPSK
229 OBJS += ../src/eap_server/eap_gpsk.o ../src/eap_common/eap_gpsk_common.o
230 ifdef CONFIG_EAP_GPSK_SHA256
231 CFLAGS += -DEAP_GPSK_SHA256
232 endif
233 NEED_SHA256=y
234 endif
235
236 ifdef CONFIG_EAP_VENDOR_TEST
237 CFLAGS += -DEAP_VENDOR_TEST
238 OBJS += ../src/eap_server/eap_vendor_test.o
239 endif
240
241 ifdef CONFIG_EAP_TLV
242 CFLAGS += -DEAP_TLV
243 OBJS += ../src/eap_server/eap_tlv.o
244 endif
245
246 ifdef CONFIG_EAP_FAST
247 CFLAGS += -DEAP_FAST
248 OBJS += ../src/eap_server/eap_fast.o
249 TLS_FUNCS=y
250 NEED_T_PRF=y
251 endif
252
253 ifdef CONFIG_EAP_IKEV2
254 CFLAGS += -DEAP_IKEV2
255 OBJS += ../src/eap_server/eap_ikev2.o ../src/eap_server/ikev2.o
256 OBJS += ../src/eap_common/eap_ikev2_common.o ../src/eap_common/ikev2_common.o
257 NEED_DH_GROUPS=y
258 endif
259
260 # Basic EAP functionality is needed for EAPOL
261 OBJS += ../src/eap_server/eap.o
262 OBJS += ../src/eap_common/eap_common.o
263 OBJS += ../src/eap_server/eap_methods.o
264 OBJS += ../src/eap_server/eap_identity.o
265
266 ifdef CONFIG_EAP
267 CFLAGS += -DEAP_SERVER
268 endif
269
270 ifndef CONFIG_TLS
271 CONFIG_TLS=openssl
272 endif
273
274 ifeq ($(CONFIG_TLS), internal)
275 ifndef CONFIG_CRYPTO
276 CONFIG_CRYPTO=internal
277 endif
278 endif
279 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
280 CFLAGS += -DCONFIG_INTERNAL_X509
281 endif
282 ifeq ($(CONFIG_CRYPTO), internal)
283 CFLAGS += -DCONFIG_INTERNAL_X509
284 endif
285
286
287 ifdef TLS_FUNCS
288 # Shared TLS functions (needed for EAP_TLS, EAP_PEAP, and EAP_TTLS)
289 CFLAGS += -DEAP_TLS_FUNCS
290 OBJS += ../src/eap_server/eap_tls_common.o
291 ifeq ($(CONFIG_TLS), openssl)
292 OBJS += ../src/crypto/tls_openssl.o
293 LIBS += -lssl -lcrypto
294 LIBS_p += -lcrypto
295 LIBS_h += -lcrypto
296 endif
297 ifeq ($(CONFIG_TLS), gnutls)
298 OBJS += ../src/crypto/tls_gnutls.o
299 LIBS += -lgnutls -lgcrypt -lgpg-error
300 LIBS_p += -lgcrypt
301 LIBS_h += -lgcrypt
302 endif
303 ifdef CONFIG_GNUTLS_EXTRA
304 CFLAGS += -DCONFIG_GNUTLS_EXTRA
305 LIBS += -lgnutls-extra
306 endif
307 ifeq ($(CONFIG_TLS), internal)
308 OBJS += ../src/crypto/tls_internal.o
309 OBJS += ../src/tls/tlsv1_common.o ../src/tls/tlsv1_record.o
310 OBJS += ../src/tls/tlsv1_cred.o ../src/tls/tlsv1_server.o
311 OBJS += ../src/tls/tlsv1_server_write.o ../src/tls/tlsv1_server_read.o
312 OBJS += ../src/tls/asn1.o ../src/tls/x509v3.o
313 OBJS_p += ../src/tls/asn1.o
314 OBJS_p += ../src/crypto/rc4.o ../src/crypto/aes_wrap.o ../src/crypto/aes.o
315 NEED_BASE64=y
316 CFLAGS += -DCONFIG_TLS_INTERNAL
317 CFLAGS += -DCONFIG_TLS_INTERNAL_SERVER
318 ifeq ($(CONFIG_CRYPTO), internal)
319 ifdef CONFIG_INTERNAL_LIBTOMMATH
320 CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH
321 else
322 LIBS += -ltommath
323 LIBS_p += -ltommath
324 endif
325 endif
326 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
327 LIBS += -ltomcrypt -ltfm
328 LIBS_p += -ltomcrypt -ltfm
329 endif
330 endif
331 NEED_CRYPTO=y
332 else
333 OBJS += ../src/crypto/tls_none.o
334 endif
335
336 ifdef CONFIG_PKCS12
337 CFLAGS += -DPKCS12_FUNCS
338 endif
339
340 ifdef MS_FUNCS
341 OBJS += ../src/crypto/ms_funcs.o
342 NEED_CRYPTO=y
343 endif
344
345 ifdef CHAP
346 OBJS += ../src/eap_common/chap.o
347 endif
348
349 ifdef NEED_CRYPTO
350 ifndef TLS_FUNCS
351 ifeq ($(CONFIG_TLS), openssl)
352 LIBS += -lcrypto
353 LIBS_p += -lcrypto
354 LIBS_h += -lcrypto
355 endif
356 ifeq ($(CONFIG_TLS), gnutls)
357 LIBS += -lgcrypt
358 LIBS_p += -lgcrypt
359 LIBS_h += -lgcrypt
360 endif
361 ifeq ($(CONFIG_TLS), internal)
362 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
363 LIBS += -ltomcrypt -ltfm
364 LIBS_p += -ltomcrypt -ltfm
365 endif
366 endif
367 endif
368 ifeq ($(CONFIG_TLS), openssl)
369 OBJS += ../src/crypto/crypto_openssl.o
370 OBJS_p += ../src/crypto/crypto_openssl.o
371 HOBJS += ../src/crypto/crypto_openssl.o
372 CONFIG_INTERNAL_SHA256=y
373 endif
374 ifeq ($(CONFIG_TLS), gnutls)
375 OBJS += ../src/crypto/crypto_gnutls.o
376 OBJS_p += ../src/crypto/crypto_gnutls.o
377 HOBJS += ../src/crypto/crypto_gnutls.o
378 CONFIG_INTERNAL_SHA256=y
379 endif
380 ifeq ($(CONFIG_TLS), internal)
381 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
382 OBJS += ../src/crypto/crypto_libtomcrypt.o
383 OBJS_p += ../src/crypto/crypto_libtomcrypt.o
384 CONFIG_INTERNAL_SHA256=y
385 endif
386 ifeq ($(CONFIG_CRYPTO), internal)
387 OBJS += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
388 OBJS_p += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
389 CFLAGS += -DCONFIG_CRYPTO_INTERNAL
390 CONFIG_INTERNAL_AES=y
391 CONFIG_INTERNAL_DES=y
392 CONFIG_INTERNAL_SHA1=y
393 CONFIG_INTERNAL_MD4=y
394 CONFIG_INTERNAL_MD5=y
395 CONFIG_INTERNAL_SHA256=y
396 endif
397 endif
398 else
399 CONFIG_INTERNAL_AES=y
400 CONFIG_INTERNAL_SHA1=y
401 CONFIG_INTERNAL_MD5=y
402 CONFIG_INTERNAL_SHA256=y
403 endif
404
405 ifdef CONFIG_INTERNAL_AES
406 CFLAGS += -DINTERNAL_AES
407 endif
408 ifdef CONFIG_INTERNAL_SHA1
409 CFLAGS += -DINTERNAL_SHA1
410 endif
411 ifdef CONFIG_INTERNAL_SHA256
412 CFLAGS += -DINTERNAL_SHA256
413 endif
414 ifdef CONFIG_INTERNAL_MD5
415 CFLAGS += -DINTERNAL_MD5
416 endif
417 ifdef CONFIG_INTERNAL_MD4
418 CFLAGS += -DINTERNAL_MD4
419 endif
420 ifdef CONFIG_INTERNAL_DES
421 CFLAGS += -DINTERNAL_DES
422 endif
423
424 ifdef NEED_SHA256
425 OBJS += ../src/crypto/sha256.o
426 endif
427
428 ifdef NEED_DH_GROUPS
429 OBJS += ../src/crypto/dh_groups.o
430 endif
431
432 ifndef NEED_FIPS186_2_PRF
433 CFLAGS += -DCONFIG_NO_FIPS186_2_PRF
434 endif
435
436 ifndef NEED_T_PRF
437 CFLAGS += -DCONFIG_NO_T_PRF
438 endif
439
440 ifdef CONFIG_RADIUS_SERVER
441 CFLAGS += -DRADIUS_SERVER
442 OBJS += ../src/radius/radius_server.o
443 endif
444
445 ifdef CONFIG_IPV6
446 CFLAGS += -DCONFIG_IPV6
447 endif
448
449 ifdef CONFIG_FULL_DYNAMIC_VLAN
450 # define CONFIG_FULL_DYNAMIC_VLAN to have hostapd manipulate bridges
451 # and vlan interfaces for the vlan feature.
452 CFLAGS += -DCONFIG_FULL_DYNAMIC_VLAN
453 endif
454
455 ifdef NEED_BASE64
456 OBJS += ../src/utils/base64.o
457 endif
458
459 ALL=hostapd hostapd_cli
460
461 all: verify_config $(ALL)
462
463 verify_config:
464 @if [ ! -r .config ]; then \
465 echo 'Building hostapd requires a configuration file'; \
466 echo '(.config). See README for more instructions. You can'; \
467 echo 'run "cp defconfig .config" to create an example'; \
468 echo 'configuration.'; \
469 exit 1; \
470 fi
471
472 install: all
473 for i in $(ALL); do cp $$i /usr/local/bin/$$i; done
474
475 hostapd: $(OBJS)
476 $(CC) -o hostapd $(OBJS) $(LIBS)
477
478 OBJS_c = hostapd_cli.o ../src/common/wpa_ctrl.o ../src/utils/os_$(CONFIG_OS).o
479 hostapd_cli: $(OBJS_c)
480 $(CC) -o hostapd_cli $(OBJS_c)
481
482 NOBJS = nt_password_hash.o ../src/crypto/ms_funcs.o ../src/crypto/sha1.o ../src/crypto/rc4.o ../src/crypto/md5.o
483 NOBJS += ../src/crypto/crypto_openssl.o ../src/utils/os_$(CONFIG_OS).o
484 ifdef TLS_FUNCS
485 LIBS_n += -lcrypto
486 endif
487
488 nt_password_hash: $(NOBJS)
489 $(CC) -o nt_password_hash $(NOBJS) $(LIBS_n)
490
491 hlr_auc_gw: $(HOBJS)
492 $(CC) -o hlr_auc_gw $(HOBJS) $(LIBS_h)
493
494 clean:
495 $(MAKE) -C ../src clean
496 rm -f core *~ *.o hostapd hostapd_cli nt_password_hash hlr_auc_gw
497 rm -f *.d
498
499 %.eps: %.fig
500 fig2dev -L eps $*.fig $*.eps
501
502 %.png: %.fig
503 fig2dev -L png -m 3 $*.fig | pngtopnm | pnmscale 0.4 | pnmtopng \
504 > $*.png
505
506 docs-pics: doc/hostapd.png doc/hostapd.eps
507
508 docs: docs-pics
509 doxygen doc/doxygen.full
510 $(MAKE) -C doc/latex
511 cp doc/latex/refman.pdf hostapd-devel.pdf
512
513 docs-fast: docs-pics
514 doxygen doc/doxygen.fast
515
516 clean-docs:
517 rm -rf doc/latex doc/html
518 rm -f doc/hosta.d{eps,png} hostapd-devel.pdf
519
520 TEST_SRC_MILENAGE = ../src/hlr_auc_gw/milenage.c ../src/crypto/aes_wrap.c ../src/crypto/aes.c ../src/utils/common.c ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).c
521 test-milenage: $(TEST_SRC_MILENAGE)
522 $(CC) -o test-milenage -Wall -Werror $(TEST_SRC_MILENAGE) \
523 -DTEST_MAIN_MILENAGE -I. -DINTERNAL_AES \
524 -I../src/crypto -I../src/utils
525 ./test-milenage
526 rm test-milenage
527
528 hostapd-sparse: $(OBJS)
529 @echo Sparse run completed
530
531 run-sparse:
532 CC="sparse -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -D__INT_MAX__=2147483647 -D__SHRT_MAX__=32767 -D__LONG_MAX__=2147483647 -D__SCHAR_MAX__=127 -Wbitwise" $(MAKE) hostapd-sparse
533
534 -include $(OBJS:%.o=%.d)