From 86894713ac51b5788dfb9da754c07d6aed9d966b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20H=C3=B6hne?= Date: Thu, 26 Jun 2025 01:14:25 +0200 Subject: [PATCH] fix: Updating README.md --- README.md | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/README.md b/README.md index 2877141..0fde13c 100644 --- a/README.md +++ b/README.md @@ -2,33 +2,11 @@ Tiny C testing framework. -## Build - -To build the library simply call `make` in the repository root. - -Alternatively it is possible to directly call the compiler with: - - gcc -c src/*.c - ar rcs libset.a *.o - rm *.o # Clean up - -### Options - -SET comes with a couple of build options that might come in handy in different scenarios. - -- no_banner: Do not print banner every time the tests are run. - - make no_banner=y - -- colorized: Build with colorized output. - - make colorized=y - ## Building a test. To build a test, first build the library. Then link it to the `test.c` via: - gcc -static test.c -L . -lset -o test + gcc src/*.c test.c -o test ## LICENSE