2009-05-10 14:17:09 +02:00
|
|
|
# st version
|
|
|
|
VERSION = 0.0
|
|
|
|
|
|
|
|
# Customize below to fit your system
|
|
|
|
|
|
|
|
# paths
|
|
|
|
PREFIX = /usr/local
|
|
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
|
|
|
|
X11INC = /usr/X11R6/include
|
|
|
|
X11LIB = /usr/X11R6/lib
|
|
|
|
|
|
|
|
# includes and libs
|
|
|
|
INCS = -I. -I/usr/include -I${X11INC}
|
2010-08-28 03:18:22 +02:00
|
|
|
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lutil
|
|
|
|
|
2009-05-10 14:17:09 +02:00
|
|
|
# flags
|
2010-08-30 13:04:19 +02:00
|
|
|
CPPFLAGS = -DVERSION=\"${VERSION}\"
|
2010-08-31 17:36:55 +02:00
|
|
|
CFLAGS += -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
|
|
|
|
LDFLAGS += -s ${LIBS}
|
2009-05-10 14:17:09 +02:00
|
|
|
|
|
|
|
# compiler and linker
|
2010-08-31 17:36:55 +02:00
|
|
|
CC ?= cc
|