Removing jansson, the library won't parse json anymore

This commit is contained in:
synt-xerror
2026-02-19 02:18:43 -03:00
parent 7cdac92582
commit 832bb88ecd
3 changed files with 261 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
make:
gcc -c neocities.c -o neocities.o
ar rcs libneocities.a neocities.o
clean:
rm libneocities.a neocities.o
example:
rm -f example
gcc example.c -L. -lneocities -lcurl -o example