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

# Customize below to your needs

# Paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/man

# 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