2009-05-10 14:17:09 +02:00
|
|
|
# st version
|
2012-11-02 20:08:27 +01:00
|
|
|
VERSION = 0.3
|
2009-05-10 14:17:09 +02:00
|
|
|
|
|
|
|
# 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
|
2013-01-04 20:52:22 +01:00
|
|
|
INCS = -I. -I/usr/include -I${X11INC} \
|
|
|
|
$(shell pkg-config --cflags fontconfig) \
|
|
|
|
$(shell pkg-config --cflags freetype2)
|
|
|
|
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lutil -lXext -lXft \
|
|
|
|
$(shell pkg-config --libs fontconfig) \
|
|
|
|
$(shell pkg-config --libs freetype2)
|
2010-08-28 03:18:22 +02:00
|
|
|
|
2009-05-10 14:17:09 +02:00
|
|
|
# flags
|
2010-08-30 13:04:19 +02:00
|
|
|
CPPFLAGS = -DVERSION=\"${VERSION}\"
|
2012-10-28 13:25:53 +01:00
|
|
|
CFLAGS += -g -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
|
|
|
|
LDFLAGS += -g ${LIBS}
|
2009-05-10 14:17:09 +02:00
|
|
|
|
|
|
|
# compiler and linker
|
2010-08-31 17:36:55 +02:00
|
|
|
CC ?= cc
|
2012-11-13 20:13:39 +01:00
|
|
|
|