Initial commit.

This commit is contained in:
2026-02-02 02:07:55 -08:00
commit c74dc8c611
6 changed files with 18661 additions and 0 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
CC = clang
UFLAGS =
FLAGS = -Wall -Wextra -ggdb -fno-caret-diagnostics -fno-show-column
#-std=c99 -pedantic
INCLUDE = $(shell pkg-config --cflags raylib)
LIBS = $(shell pkg-config --libs raylib)
FRAMEWORKS = -framework IOKit -framework Cocoa -framework OpenGL
EXE=main
$(EXE): $(EXE).c
$(CC) $(FLAGS) $(UFLAGS) $(INCLUDE) $^ $(LIBS) -o $@
tags: $(OBJS)
ctags -R *.h *.c
clean:
rm -rf $(EXE) $(EXE).dSYM