]> git.ipfire.org Git - thirdparty/hostap.git/blame_incremental - src/Makefile
Replace EapType typedef with enum eap_type
[thirdparty/hostap.git] / src / Makefile
... / ...
CommitLineData
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
2SUBDIRS += fst
3
4all:
5 for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
6
7clean:
8 for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done
9 rm -f *~
10
11install:
12 for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done