first commit

This commit is contained in:
Return0ne 2021-08-01 13:11:40 -04:00
commit 2b67dc0dc6
2 changed files with 74 additions and 0 deletions

26
Makefile Normal file
View file

@ -0,0 +1,26 @@
#COPYRIGHT no one cares lol
#files to compile
OBJS = src/main.cpp
#compiler to use
CC = g++
#comp flags lul
COMPILER_FLAGS = -w
#libs we linkin bro
LINKER_FLAGS = -lSDL2
#name of muh bin lel
OBJ_NAME = SDL2TEST1
#no regerts cuz its all together now
all : $(OBJS)
$(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME)