Use the new build.rules in lib.rules and also unify the clean targets to lib.rules. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
14 lines
181 B
Makefile
14 lines
181 B
Makefile
ALL=libl2_packet.a
|
|
|
|
include ../lib.rules
|
|
|
|
install:
|
|
@echo Nothing to be made.
|
|
|
|
|
|
LIB_OBJS = l2_packet_linux.o
|
|
|
|
libl2_packet.a: $(LIB_OBJS)
|
|
$(AR) crT $@ $?
|
|
|
|
-include $(OBJS:%.o=%.d)
|