first commit

This commit is contained in:
Return0ne 2021-08-04 12:09:11 -04:00
commit 10e60e4e3c
2 changed files with 77 additions and 0 deletions

18
Makefile Normal file
View file

@ -0,0 +1,18 @@
#COPYRIGHT no one cares lol
#files to compile
OBJS = src/main.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)