Tobee_RPG/Makefile

19 lines
249 B
Makefile

#COPYRIGHT no one cares lol
#files to compile
OBJS = src/main.cpp src/TobeeRPG.h 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)