a3275fc023
This is a newer version of tests/test-json tool. Signed-off-by: Jouni Malinen <j@w1.fi>
19 lines
425 B
Makefile
19 lines
425 B
Makefile
all: json
|
|
include ../rules.include
|
|
|
|
OBJS += $(SRC)/utils/base64.o
|
|
OBJS += $(SRC)/utils/common.o
|
|
OBJS += $(SRC)/utils/json.o
|
|
OBJS += $(SRC)/utils/os_unix.o
|
|
OBJS += $(SRC)/utils/wpa_debug.o
|
|
OBJS += $(SRC)/utils/wpabuf.o
|
|
|
|
json: json.o $(OBJS) $(LIBS)
|
|
$(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) $(ELIBS)
|
|
|
|
clean:
|
|
$(MAKE) -C $(SRC) clean
|
|
$(MAKE) -C $(WPAS_SRC) clean
|
|
rm -f json *~ *.o *.d ../*~ ../*.o ../*.d
|
|
|
|
-include $(OBJS:%.o=%.d)
|