Makefile 262 B

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