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_list.c \ 16 ap_mlme.c \ 17 authsrv.c \ 18 beacon.c \ 19 bss_load.c \ 20 ctrl_iface_ap.c \ 21 dfs.c \ 22 drv_callbacks.c \ 23 eap_user_db.c \ 24 gas_serv.c \ 25 hostapd.c \ 26 hs20.c \ 27 hw_features.c \ 28 ieee802_11.c \ 29 ieee802_11_auth.c \ 30 ieee802_11_he.c \ 31 ieee802_11_ht.c \ 32 ieee802_11_shared.c \ 33 ieee802_11_vht.c \ 34 ieee802_1x.c \ 35 mbo_ap.c \ 36 neighbor_db.c \ 37 pmksa_cache_auth.c \ 38 preauth_auth.c \ 39 rrm.c \ 40 sta_info.c \ 41 tkip_countermeasures.c \ 42 utils.c \ 43 vlan.c \ 44 vlan_ifconfig.c \ 45 vlan_init.c \ 46 wmm.c \ 47 wpa_auth.c \ 48 wpa_auth_glue.c \ 49 wpa_auth_ie.c \ 50 wps_hostapd.c 51 52CFLAGS+=-DCONFIG_MBO \ 53 -DCONFIG_RSN_PREAUTH \ 54 -DHOSTAPD 55 56# We are only interested in includes at this point. Not libraries. 57LIBADD= 58 59.include <bsd.lib.mk> 60