0e574b07f8
This is a separate program and is used mainly with hostapd, so it is better to move this into the hostapd subdirectory now that Milenage code has already been moved into src/crypto. Milenage was the only generic component in hlr_auc_gw.
11 lines
351 B
Makefile
11 lines
351 B
Makefile
SUBDIRS=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
|