equal
deleted
inserted
replaced
1 # dwm version |
1 # dpoke version |
2 VERSION = 0.01 |
2 VERSION = 0.02 |
3 |
3 |
4 # Customize below to fit your system |
4 # Customize below to fit your system |
5 |
5 |
6 # includes and libs |
6 # includes and libs |
7 #INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags xft pango pangoxft` |
7 DPOKE_LIBS = -L/usr/lib -lm -lX11 |
8 #LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} `pkg-config --libs xft pango pangoxft` |
8 DPOKE_INCS = |
9 LIBS = -L/usr/lib -lc -lrt -lm |
9 DPOKE_CPPFLAGS = -DVERSION=\"${VERSION}\" |
|
10 DPOKE_CFLAGS = -g -std=c99 -pedantic -Wall -Os ${DPOKE_INCS} ${DPOKE_CPPFLAGS} |
|
11 DPOKE_LDFLAGS = -g ${DPOKE_LIBS} |
10 |
12 |
11 # flags |
13 STATUS_LIBS = -L/usr/lib |
12 CPPFLAGS = -DVERSION=\"${VERSION}\" |
14 STATUS_INCS = |
13 CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} |
15 STATUS_CPPFLAGS = -DVERSION=\"${VERSION}\" |
14 #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} |
16 STATUS_CFLAGS = -std=c99 -pedantic -Wall -Os ${STATUS_INCS} ${STATUS_CPPFLAGS} |
15 LDFLAGS = -g ${LIBS} |
17 STATUS_LDFLAGS = ${STATUS_LIBS} -static |
16 #LDFLAGS = -s ${LIBS} |
|
17 |
18 |
|
19 STATUS = status-time status-mem status-loadavg |
18 # compiler and linker |
20 # compiler and linker |
19 CC = cc |
21 CC = cc |