Add Usage and Testing sections to README.md

This commit is contained in:
2025-12-06 10:45:59 +01:00
parent c7421d8947
commit 6efbeaa431
4 changed files with 12 additions and 13 deletions
-13
View File
@@ -1,13 +0,0 @@
.PHONY: all clean
ifeq ($(shell uname -s),Windows_NT)
EXT = .exe
else
EXT = .out
endif
all:
gcc -o test$(EXT) test.c ../url.c cJSON.c -Wall -Wextra -ggdb
clean:
rm test.out test.exe
+1
View File
@@ -0,0 +1 @@
gcc -o test.exe test.c ../url.c cJSON.c -Wall -Wextra -ggdb
+1
View File
@@ -0,0 +1 @@
gcc -o test.out test.c ../url.c cJSON.c -Wall -Wextra -ggdb