From 17d4fd0b90368086f9cf0a235db3223ea17d3d83 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife <55228370+AUnicornWithNoLife@users.noreply.github.com> Date: Thu, 11 May 2023 21:28:14 +0100 Subject: [PATCH] Create makefile --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..6f9c705 --- /dev/null +++ b/makefile @@ -0,0 +1,13 @@ +test: carg-parse.c carg-parse.h test.c + @echo "BUILDING" + @clang ./test.c ./carg-parse.c -o ./test + @echo "DONE" + +stress: + @make test + @echo "STRESSING - if you see any errors / segfaults / fuckups please revert changes or open an issue" + ./test + ./test -a -a + ./test --a + ./test - + ./test a b c d -a a -b b -c c -d d