First commit with game files

This commit is contained in:
Return0ne 2021-08-28 18:48:16 -04:00
parent 6bcf6fb77e
commit e3b240b89c
9 changed files with 120 additions and 1 deletions

23
Makefile Normal file
View file

@ -0,0 +1,23 @@
#COPYRIGHT 2021 by M-C-O-B all code is under the GNU General Public License v3.0 and later
#files to compile
OBJS = src/main.c src/Controls.c
#compiler to use
CC = gcc
#libs we linkin bro
LINKER_FLAGS = -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
#name of muh bin lel
OBJ_NAME = T_V_X_E
#no regerts cuz its all together now
all : $(OBJS)
$(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME)