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