summaryrefslogtreecommitdiff
path: root/config.mk
blob: 4fd021d97cc0f602208882bba68e46ed68262a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# sfeed version
VERSION = 0.9

# customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

# includes and libs
INCS =
LIBS = -lc

# debug
CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -pedantic \
	-DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE
LDFLAGS = ${LIBS}

# optimized
#CFLAGS = -O2 -std=c99 -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE
#LDFLAGS = -s ${LIBS}

# tcc
#CC = tcc
#CFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE
#LDFLAGS = -s ${LIBS}

# compiler and linker
#CC = cc