config.mk
author Stiletto <blasux@blasux.ru>
Mon, 20 Oct 2014 22:59:08 +0400
changeset 1 3e9290bf7249
parent 0 a22a319f5129
child 4 70b4e0b27e2c
permissions -rw-r--r--
Some sample status scripts

# 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
# compiler and linker
CC = cc