add a few more cflags to the makefile

This commit is contained in:
jacekpoz 2024-09-08 12:14:41 +02:00
parent 273094de29
commit 59f4ed89d4
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -2,6 +2,7 @@
CC = clang
CFLAGS = -std=c11 -Wall -Wextra -Wpedantic
CFLAGS += -Werror -Wfloat-equal -Wshadow
CFLAGS += -fPIC -fstrict-aliasing
CFLAGS += $(shell pkg-config --cflags glfw3 vulkan)
LDFLAGS = $(shell pkg-config --libs glfw3 vulkan)