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