Tux_Vs_X_ENGINE/Makefile

24 lines
413 B
Makefile

#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)