blob: c9e84c11de7a43cf2710fb9acc578d8102bfb08d [file] [log] [blame]
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07001SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002SUBDIRS += fst
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003
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