Major overhaul, various fixes for buffer processing functions
[ust.git] / config.mk
1 VERSION = 0.2.1
2
3 PREFIX = /usl/local
4
5 # need -D_GNU_SOURCE wehn compiling on Linux
6 OS != uname -s
7
8 GNUSRC != if [ "${OS}" = "Linux" ]; then \
9 printf "%s" "-D_GNU_SOURCE"; \
10 fi
11
12 CFLAGS = -std=c99 -Wall -pthread -O2 ${GNUSRC}
13 LDFLAGS =
14
15 CC = cc