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