config.mk
author Stiletto <blasux@blasux.ru>
Sat, 17 Aug 2019 15:23:15 +0400
changeset 16 e08bdbec1843
parent 14 fa82d67af1ea
permissions -rw-r--r--
Fix battery indicator

# dpoke version
VERSION = 0.03

# Customize below to fit your system

# includes and libs
DPOKE_LIBS = -L/usr/lib -lm -lX11
DPOKE_INCS =
DPOKE_CPPFLAGS = -DVERSION=\"${VERSION}\"
DPOKE_CFLAGS = -g -std=c99 -pedantic -Wall -Os ${DPOKE_INCS} ${DPOKE_CPPFLAGS}
DPOKE_LDFLAGS = -g ${DPOKE_LIBS}

STATUS_LIBS = -L/usr/lib
STATUS_INCS =
STATUS_CPPFLAGS = -DVERSION=\"${VERSION}\"
STATUS_CFLAGS = -g -std=c99 -pedantic -Wall -Os ${STATUS_INCS} ${STATUS_CPPFLAGS}
STATUS_LDFLAGS = -g ${STATUS_LIBS} -static

STATUS = status-time status-mem status-loadavg status-bat status-wifi
# compiler and linker
CC = cc