1057d78eb8
This code can be shared by both hostapd and wpa_supplicant and this is an initial step in getting the generic code moved to be under the src directories. Couple of generic files still remain under the hostapd directory due to direct dependencies to files there. Once the dependencies have been removed, they will also be moved to the src/ap directory to allow wpa_supplicant to be built without requiring anything from the hostapd directory.
11 lines
354 B
Makefile
11 lines
354 B
Makefile
SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet 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
|