SOURCES = src/*.c LIBS = -lSDL2 -lSDL2_image CFLAGS = -DDEBUG main: $(SOURCES) src/*.h gcc $(SOURCES) $(LIBS) $(CFLAGS) -o main run: main ./main