• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/wpa_supplicant-0.7.3/src/
1SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet radius rsn_supp tls utils wps
2
3all:
4	for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
5
6clean:
7	for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done
8	rm -f *~
9
10install:
11	for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done
12