2021-08-28 22:48:16 +00:00
|
|
|
#COPYRIGHT 2021 by M-C-O-B all code is under the GNU General Public License v3.0 and later
|
|
|
|
|
|
|
|
#files to compile
|
|
|
|
|
2021-09-18 15:22:16 +00:00
|
|
|
OBJS = src/Main.c src/Controls.c src/Debug.c src/Copying.c
|
2021-08-28 22:48:16 +00:00
|
|
|
|
|
|
|
#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)
|