From: Jouni Malinen Date: Sun, 29 Nov 2009 18:21:25 +0000 (+0200) Subject: Add Makefile for the new src/eapol_auth directory X-Git-Tag: hostap_0_7_1~442 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffa2a30e330c243e3a61d6851817d06e29f954e4;p=thirdparty%2Fhostap.git Add Makefile for the new src/eapol_auth directory --- diff --git a/src/Makefile b/src/Makefile index bd1c160cd..b02c66029 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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. diff --git a/src/eapol_auth/Makefile b/src/eapol_auth/Makefile new file mode 100644 index 000000000..cffba620d --- /dev/null +++ b/src/eapol_auth/Makefile @@ -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.