config.mk - quark - quark web server | |
git clone git://git.suckless.org/quark | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
config.mk (327B) | |
--- | |
1 # quark version | |
2 VERSION = 0 | |
3 | |
4 # Customize below to fit your system | |
5 | |
6 # paths | |
7 PREFIX = /usr/local | |
8 MANPREFIX = $(PREFIX)/share/man | |
9 | |
10 # flags | |
11 CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=70… | |
12 CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os | |
13 LDFLAGS = -lpthread -s | |
14 | |
15 # compiler and linker | |
16 CC = cc |