From 1d379a5cf34475f66f2ab9359f77dac162c0a40e Mon Sep 17 00:00:00 2001 From: Dylan Date: Sat, 6 Jun 2026 19:36:41 +1200 Subject: feat: JSON reading - Implemented a tokenizer for json - Implemented a method which will read json from a string using the tokenizer --- GNUmakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index b8aab00..c4383d0 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -48,7 +48,7 @@ $(OBJS_DIR)/%.o: $(TEST_SRC_DIR)/%.cpp $(TEST_SOURCE) $(TEST_HEADERS) # Phony -.PHONY: clean +.PHONY: clean test clean: rm -f $(LIB) rm -f $(OBJS_DIR)/*.o @@ -56,4 +56,5 @@ clean: test: $(TEST) -$(OBJS_DIR)/json.o: $(SOURCE_DIR)/json.hpp +$(OBJS_DIR)/json.o: $(SOURCE_DIR)/json.hpp $(SOURCE_DIR)/tokenizer.h +$(OBJS_DIR)/tokenizer.o: -- cgit v1.2.3