Tobee_RPG/Makefile

19 lines
252 B
Makefile

#COPYRIGHT no one cares lol
#files to compile
OBJS = src/Main.cpp src/RPG.cpp
#compiler to use
CC = g++
#name of muh bin lel
OBJ_NAME = TobeeRPG
#no regerts cuz its all together now
all : $(OBJS)
$(CC) $(OBJS) -o $(OBJ_NAME)