summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkitty piapiac <kcp@bsd.computer>2023-04-17 23:46:30 -0700
committerkitty piapiac <kcp@bsd.computer>2023-04-17 23:46:30 -0700
commit5393ce93d05f9979b7882c686b241f6738011c64 (patch)
treeb68d664d2c5c47490c0dbba8ef72a4974e516210 /Makefile
parentf92b613698b5c4066068bb937b5993b1c5a3bd24 (diff)
mat4 transformations
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a5adbd..358b282 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
.POSIX:
CC := clang
-CFLAGS := -std=c11 -Wall -Wextra -Wshadow -Iinclude $(shell sdl2-config --cflags)
+CFLAGS := -std=c11 -Wall -Wextra -Wshadow -Iinclude $(shell sdl2-config --cflags) $(shell pkg-config --cflags cglm)
LDFLAGS :=
-LDLIBS := -ldl -lm $(shell sdl2-config --libs)
+LDLIBS := -ldl -lm $(shell sdl2-config --libs) $(shell pkg-config --libs cglm)
all: mino
mino: glad.o tex.o graph.o mino.o
mino.o: mino.c include/mino.h