You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 1234567891011 | SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p radius rsn_supp tls utils wps
all:
	for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
clean:
	for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done
	rm -f *~
install:
	for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done
 |