Added README file.
[dwm-status] / config.mk
CommitLineData
a1751622
CL
1NAME = dwmstatus
2VERSION = 1.0
3
4# Customize below to fit your system
5
6# paths
7PREFIX = /usr
8MANPREFIX = ${PREFIX}/share/man
9
4467b269
AT
10X11INC = /usr/local/include
11X11LIB = /usr/local/lib
a1751622
CL
12
13# includes and libs
14INCS = -I. -I/usr/include -I${X11INC}
15LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
16
17# flags
18CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
19CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
20#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
21LDFLAGS = -g ${LIBS}
22#LDFLAGS = -s ${LIBS}
23
24# Solaris
25#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
26#LDFLAGS = ${LIBS}
27
28# compiler and linker
29CC = cc
30