1.include <src.opts.mk> 2 3.include "../../Makefile.inc" 4 5.include "../../Makefile.crypto" 6 7LIB= wpaap 8INTERNALLIB= 9 10.PATH: ${WPA_DISTDIR}/src/ap 11 12SRCS= accounting.c \ 13 ap_config.c \ 14 ap_drv_ops.c \ 15 ap_mlme.c \ 16 authsrv.c \ 17 beacon.c \ 18 bss_load.c \ 19 ctrl_iface_ap.c \ 20 dfs.c \ 21 drv_callbacks.c \ 22 eap_user_db.c \ 23 hostapd.c \ 24 ieee802_11_auth.c \ 25 ieee802_11_ht.c \ 26 ieee802_11_shared.c \ 27 ieee802_11_vht.c \ 28 ieee802_1x.c \ 29 mbo_ap.c \ 30 neighbor_db.c \ 31 pmksa_cache_auth.c \ 32 preauth_auth.c \ 33 rrm.c \ 34 sta_info.c \ 35 tkip_countermeasures.c \ 36 utils.c \ 37 vlan.c \ 38 vlan_ifconfig.c \ 39 vlan_init.c \ 40 wmm.c \ 41 wnm_ap.c \ 42 wpa_auth.c \ 43 wpa_auth_glue.c \ 44 wpa_auth_ie.c 45 46.if ${MK_WPA_SUPPLICANT_EAPOL} != "no" 47SRCS+= gas_serv.c \ 48 hs20.c \ 49 wps_hostapd.c 50.endif 51 52CFLAGS+=-DHOSTAPD 53 54# We are only interested in includes at this point. Not libraries. 55LIBADD= 56 57.include <bsd.lib.mk> 58