Tobee_RPG/Makefile

19 lines
252 B
Makefile
Raw Permalink Normal View History

2021-08-12 18:05:34 +00:00
#COPYRIGHT no one cares lol
#files to compile
2021-10-30 20:48:46 +00:00
OBJS = src/Main.cpp src/RPG.cpp
2021-08-12 18:05:34 +00:00
#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)