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 gas_serv.c \ 24 hostapd.c \ 25 hs20.c \ 26 ieee802_11_auth.c \ 27 ieee802_11_ht.c \ 28 ieee802_11_shared.c \ 29 ieee802_11_vht.c \ 30 ieee802_1x.c \ 31 mbo_ap.c \ 32 neighbor_db.c \ 33 pmksa_cache_auth.c \ 34 preauth_auth.c \ 35 rrm.c \ 36 sta_info.c \ 37 tkip_countermeasures.c \ 38 utils.c \ 39 vlan.c \ 40 vlan_ifconfig.c \ 41 vlan_init.c \ 42 wmm.c \ 43 wnm_ap.c \ 44 wpa_auth.c \ 45 wpa_auth_glue.c \ 46 wpa_auth_ie.c \ 47 wps_hostapd.c 48 49CFLAGS+=-DHOSTAPD 50 51# We are only interested in includes at this point. Not libraries. 52LIBADD= 53 54.include <bsd.lib.mk> 55