# Initial Version VERSION = 0.1 PKGS = sdl2 SDL2_gfx INCS = `pkg-config --cflags $(PKGS)` LIBS = `pkg-config --libs $(PKGS)` -lSDL2_ttf -lm # flags CFLAGS = -pedantic -Wall -Wextra -Werror -O3 ${INCS} LDFLAGS = ${LIBS} # compiler and linker CC = gcc