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.

Makefile 358B

1234567891011
  1. SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p radius rsn_supp tls utils wps
  2. all:
  3. for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
  4. clean:
  5. for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done
  6. rm -f *~
  7. install:
  8. for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done