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