summaryrefslogtreecommitdiffstats
path: root/config.mk
blob: affaddb518a375096a6a801af367676af381e8a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Cras version
VERSION = 0.0.0

# Customize below to your needs

# Paths
PREFIX = /usr/local

# Flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L
#CFLAGS = -g -std=c99 -Wpedantic -Wall -Wextra ${CPPFLAGS}
CFLAGS = -std=c99 -Wpedantic -Wall -Wextra ${CPPFLAGS}
#LDFLAGS = -static

# Compiler and linker
CC = cc