CFLAGS = -Wall -Wextra -std=c99 -pedantic -O2 LIBS = -lSDL2 -lm out: main.c $(CC) $(CFLAGS) $(LIBS) $< -o $@