author | Stiletto <blasux@blasux.ru> |
Fri, 24 Oct 2014 14:13:46 +0400 | |
changeset 10 | 442bed4a072e |
parent 7 | c0ca2b08f061 |
child 14 | fa82d67af1ea |
permissions | -rw-r--r-- |
1 | 1 |
# dpoke version |
7 | 2 |
VERSION = 0.03 |
0 | 3 |
|
4 |
# Customize below to fit your system |
|
5 |
||
6 |
# includes and libs |
|
1 | 7 |
DPOKE_LIBS = -L/usr/lib -lm -lX11 |
8 |
DPOKE_INCS = |
|
9 |
DPOKE_CPPFLAGS = -DVERSION=\"${VERSION}\" |
|
10 |
DPOKE_CFLAGS = -g -std=c99 -pedantic -Wall -Os ${DPOKE_INCS} ${DPOKE_CPPFLAGS} |
|
11 |
DPOKE_LDFLAGS = -g ${DPOKE_LIBS} |
|
0 | 12 |
|
1 | 13 |
STATUS_LIBS = -L/usr/lib |
14 |
STATUS_INCS = |
|
15 |
STATUS_CPPFLAGS = -DVERSION=\"${VERSION}\" |
|
10 | 16 |
STATUS_CFLAGS = -g -std=c99 -pedantic -Wall -Os ${STATUS_INCS} ${STATUS_CPPFLAGS} |
17 |
STATUS_LDFLAGS = -g ${STATUS_LIBS} -static |
|
0 | 18 |
|
6
de6b88d1fa3c
status-bat (with optional udev support!)
Stiletto <blasux@blasux.ru>
parents:
4
diff
changeset
|
19 |
STATUS = status-time status-mem status-loadavg status-wifi status-bat |
0 | 20 |
# compiler and linker |
21 |
CC = cc |