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 |
|
14
|
19 |
STATUS = status-time status-mem status-loadavg status-bat status-wifi |
0
|
20 |
# compiler and linker |
|
21 |
CC = cc |