1ALL=json 2include ../rules.include 3 4OBJS += $(SRC)/utils/base64.o 5OBJS += $(SRC)/utils/common.o 6OBJS += $(SRC)/utils/json.o 7OBJS += $(SRC)/utils/os_unix.o 8OBJS += $(SRC)/utils/wpa_debug.o 9OBJS += $(SRC)/utils/wpabuf.o 10 11OBJS += json.o 12 13_OBJS_VAR := OBJS 14include ../../../src/objs.mk 15 16_OBJS_VAR := LIBS 17include ../../../src/objs.mk 18 19json: $(OBJS) $(LIBS) 20 $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) $(ELIBS) 21 22clean: common-clean 23 rm -f json *~ *.o *.d ../*~ ../*.o ../*.d 24