c7edfce79a
PASN initiator functionality builds auth 1 and auth 3 frames, and processes auth 2 frame received from the responder. Wi-Fi Aware modules can reuse this functionality through a shared library libpasn.so generated from this code. Move the PASN functionality that is now decoupled from the wpa_s context into a separate file in a common directory to make it easier to build such a library. Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
12 lines
390 B
Makefile
12 lines
390 B
Makefile
SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae pasn radius rsn_supp tls utils wps
|
|
SUBDIRS += fst
|
|
|
|
all:
|
|
for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
|
|
|
|
clean:
|
|
$(Q)for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done
|
|
$(Q)rm -f *~
|
|
|
|
install:
|
|
for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done
|