From 3ff991d60504bcb652ec673c740d40d1ce6c3454 Mon Sep 17 00:00:00 2001 From: epochryphon Date: Mon, 31 Aug 2026 05:30:57 +0200 Subject: [PATCH] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c7e62d4..79ca75c 100644 --- a/README.md +++ b/README.md @@ -36,4 +36,10 @@ env_set CFLAGS -std=c17 -pedantic -Wall -Wextra env_set DEBUG_FLAGS -g3 -O0 env_set RELEASE_FLAGS -O2 -DNDEBUG env_set LIBS -lm -``` \ No newline at end of file +``` + +**Tips** +1: If you update a .h file you MUST do a `make clean` before building again otherwise the header changes will not be used. + + +2: if you remove a .c file, you MUST do a `make clean` or manually remove .o files, otherwise they will never be wiped (even if they are no longer linked, it will just waste some disk-space) \ No newline at end of file