Update README.md

This commit is contained in:
2026-08-31 05:30:57 +02:00
parent cf9759743c
commit 3ff991d605

View File

@@ -37,3 +37,9 @@ env_set DEBUG_FLAGS -g3 -O0
env_set RELEASE_FLAGS -O2 -DNDEBUG env_set RELEASE_FLAGS -O2 -DNDEBUG
env_set LIBS -lm env_set LIBS -lm
``` ```
**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)