blob: 7b927a12773105e629a8c85739b6464eab2c3cc7 [file] [log] [blame]
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07001all: libeapol_auth.a
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002
3clean:
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07004 rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_auth.a
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005
6install:
7 @echo Nothing to be made.
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07008
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)