First commit with game files
This commit is contained in:
parent
6bcf6fb77e
commit
e3b240b89c
9 changed files with 120 additions and 1 deletions
23
Makefile
Normal file
23
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue