config.mk
author Stiletto <blasux@blasux.ru>
Thu, 23 Oct 2014 19:32:57 +0400
changeset 8 028758fdeab2
parent 7 c0ca2b08f061
child 10 442bed4a072e
permissions -rw-r--r--
Added tag 0.03 for changeset c0ca2b08f061

# 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 = -std=c99 -pedantic -Wall -Os ${STATUS_INCS} ${STATUS_CPPFLAGS}
STATUS_LDFLAGS = ${STATUS_LIBS} -static

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