diff options
author | kitty piapiac <kcp@bsd.computer> | 2023-04-17 23:46:30 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2023-04-17 23:46:30 -0700 |
commit | 5393ce93d05f9979b7882c686b241f6738011c64 (patch) | |
tree | b68d664d2c5c47490c0dbba8ef72a4974e516210 /Makefile | |
parent | f92b613698b5c4066068bb937b5993b1c5a3bd24 (diff) |
mat4 transformations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |