First commit

This commit is contained in:
Phireh 2022-11-07 22:09:25 +01:00
commit 546648cbdd
4 changed files with 244 additions and 0 deletions

5
Makefile Normal file
View file

@ -0,0 +1,5 @@
CFLAGS=-Wall -Wextra -g -fenable-matrix
LIBS=`pkg-config --libs glfw3 glew opengl` -lm
hexnando: main.c
clang ${CFLAGS} ${LIBS} main.c -o hexnando