]> git.ipfire.org Git - thirdparty/hostap.git/blob - src/Makefile
Use a shared helper function for RSN supplicant capabilities
[thirdparty/hostap.git] / src / Makefile
1 SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps
2 SUBDIRS += fst
3
4 all:
5 for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
6
7 clean:
8 for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done
9 rm -f *~
10
11 install:
12 for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done