Tobee_RPG/Makefile

19 lines
249 B
Makefile
Raw Normal View History

2021-08-04 16:09:11 +00:00
#COPYRIGHT no one cares lol
#files to compile
2021-08-08 13:32:35 +00:00
OBJS = src/main.cpp src/TobeeRPG.h src/RPG.cpp
2021-08-04 16:09:11 +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)