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