Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSON support #12

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
/.vscode
/build
/src/test
/src/test-json
/src/test-utf8
5 changes: 4 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
override THIS_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))

override TARGETS := test test-utf8
override TARGETS := test test-json test-utf8

all:| $(TARGETS)
clean:| $(TARGETS:%=clean-%)
Expand All @@ -23,6 +23,9 @@ override DBG_test := dbg.c
override LIBS_test = $(CJSON_LIBS)
override CFLAGS_test.c = $(CJSON_CFLAGS)

override SRC_test-json := json.c test-json.c
override DBG_test-json := dbg.c

override SRC_test-utf8 := letopt.c test-utf8.c utf8.c
override DBG_test-utf8 := dbg.c

Expand Down
Loading