26 lines
339 B
Makefile
26 lines
339 B
Makefile
#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)
|