blob: e3665061973917817738edcdefbba79b8cb88120 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# installation paths
PREFIX = /usr/local
# compiler and flags
CC = cc
CFLAGS = -std=c99 -pedantic -Wall -Wextra -O2
LDFLAGS =
# GTK3 configuration
INCS = `pkg-config --cflags gtk+-3.0`
LIBS = `pkg-config --libs gtk+-3.0`
# debug build
#CFLAGS = -std=c99 -pedantic -Wall -Wextra -g -O0 -DDEBUG
|