diff options
author | kitty piapiac <kcp@bsd.computer> | 2023-04-16 03:39:23 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2023-04-16 03:39:23 -0700 |
commit | 190869967285173e92d4c8cf06bea1e99718fffe (patch) | |
tree | ce27937b54a542d4321efcbaac5b295e5de98faa /Makefile | |
parent | 4136e8f2e1e5da874d58fcea3b1f004b07c9677f (diff) |
draw a triangle
i wonder where kitty-cricket learnt this one from
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ .POSIX: -CC := clang -CFLAGS := -std=c11 -Wall -Wextra -Wshadow -Iinclude $(shell sdl2-config --cflags) +CC := clang +CFLAGS := -std=c11 -Wall -Wextra -Wshadow -Iinclude $(shell sdl2-config --cflags) LDFLAGS := -LDLIBS := -ldl $(shell sdl2-config --libs) +LDLIBS := -ldl $(shell sdl2-config --libs) all: mino mino: glad.o graph.o mino.o mino.o: mino.c include/mino.h |