From 0612bfa57649c4bffea0ca6e436539d8c3193a80 Mon Sep 17 00:00:00 2001 From: justanothercatgirl Date: Sat, 22 Mar 2025 14:09:55 +0300 Subject: Added json serializer/parser --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c24e590..3a44550 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC := gcc CFLAGS := -g -Wall -Wextra -Wpedantic -Werror -Wno-language-extension-token -Wno-stringop-overread -Iinclude -tests: container types log +tests: container types log json container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c \ tests/binary_search.c tests/linked_list.c tests/hashset.c \ @@ -30,14 +30,18 @@ container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c \ rm $@ -types: tests/types.c +types: tests/types.c include/rstypes.h $(CC) -o $@ tests/types.c $(CFLAGS) ./$@ rm $@ -log: tests/log.c +log: tests/log.c include/log.h $(CC) -o $@ tests/log.c $(CFLAGS) - ./$@ rm $@ +json: tests/json.c include/jacson.h + $(CC) -o $@ tests/json.c $(CFLAGS) + ./$@ + rm $@ -- cgit v1.2.3-70-g09d2