Home | History | Annotate | Download | only in eapol_auth
      1 all: libeapol_auth.a
      2 
      3 clean:
      4 	rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_auth.a
      5 
      6 install:
      7 	@echo Nothing to be made.
      8 
      9 include ../lib.rules
     10 
     11 LIB_OBJS = eapol_auth_sm.o eapol_auth_dump.o
     12 
     13 libeapol_auth.a: $(LIB_OBJS)
     14 	$(AR) crT $@ $?
     15 
     16 -include $(OBJS:%.o=%.d)
     17