mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-14 00:59:37 +00:00
e275d5ba1f
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
11 lines
358 B
Makefile
11 lines
358 B
Makefile
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
|