first commit
This commit is contained in:
commit
2b67dc0dc6
2 changed files with 74 additions and 0 deletions
26
Makefile
Normal file
26
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue