Introduction
Introduction Statistics Contact Development Disclaimer Help
tconfig.mk - sic - simple irc client
git clone git://git.suckless.org/sic
Log
Files
Refs
README
LICENSE
---
tconfig.mk (365B)
---
1 # sic version
2 VERSION = 1.3
3
4 # Customize below to fit your system
5
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
9
10 # includes and libs
11 INCS = -I. -I/usr/include
12 LIBS = -L/usr/lib -lc
13
14 # flags
15 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
16 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
17 LDFLAGS = -s ${LIBS}
18
19 # compiler and linker
20 CC = cc
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.