aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorame <[email protected]>2024-08-26 16:13:19 -0500
committerame <[email protected]>2024-08-26 16:13:25 -0500
commit7a15e796e8789b51a459af7fe890e02a416e1fc7 (patch)
tree5d6e80abc948ba0034d3b4f32bba6746d95735e5 /makefile
parent064376146afad7af0b496014c59ba4b4f78d4c78 (diff)
use integer format macros
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 11731cb..72e3243 100644
--- a/makefile
+++ b/makefile
@@ -2,7 +2,7 @@ CC := clang
GIT_COMMIT := "$(shell git describe --tags)-$(shell git describe --always --match 'NOT A TAG')"
-CFLAGS := -fPIC -DGIT_COMMIT='$(GIT_COMMIT)'
+CFLAGS := -fPIC -DGIT_COMMIT='$(GIT_COMMIT)' -Wall
LFLAGS := -lm -shared
LINKER := clang