config.mk
author Stiletto <blasux@blasux.ru>
Thu, 23 Oct 2014 19:32:52 +0400
changeset 7 c0ca2b08f061
parent 6 de6b88d1fa3c
child 10 442bed4a072e
permissions -rw-r--r--
v0.03 yay!

# 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