config.mk
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--
status-bat (with optional udev support!)

# dpoke version
VERSION = 0.02

# 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