summaryrefslogtreecommitdiff
path: root/config.mk
blob: f219d914eaa4a40dd6b5d72087c75878ec6646a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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