Add Makefile for the new src/eapol_auth directory

This commit is contained in:
Jouni Malinen 2009-11-29 20:21:25 +02:00
parent b60d6f61e4
commit ffa2a30e33
2 changed files with 10 additions and 1 deletions

View file

@ -1,4 +1,4 @@
SUBDIRS=common crypto drivers hlr_auc_gw eapol_supp eap_common eap_peer eap_server l2_packet radius rsn_supp tls utils wps
SUBDIRS=common crypto drivers hlr_auc_gw eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet radius rsn_supp tls utils wps
all:
@echo Nothing to be made.

9
src/eapol_auth/Makefile Normal file
View file

@ -0,0 +1,9 @@
all:
@echo Nothing to be made.
clean:
for d in $(SUBDIRS); do make -C $$d clean; done
rm -f *~ *.o *.d
install:
@echo Nothing to be made.