author | Stiletto <blasux@blasux.ru> |
Thu, 23 Oct 2014 19:00:42 +0400 | |
changeset 6 | de6b88d1fa3c |
parent 4 | 70b4e0b27e2c |
child 7 | c0ca2b08f061 |
permissions | -rw-r--r-- |
1 | 1 |
# dpoke version |
2 |
VERSION = 0.02 |
|
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}\" |
|
16 |
STATUS_CFLAGS = -std=c99 -pedantic -Wall -Os ${STATUS_INCS} ${STATUS_CPPFLAGS} |
|
17 |
STATUS_LDFLAGS = ${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 |