2009-05-10 12:17:09 +00:00
|
|
|
# st version
|
2016-08-11 14:25:58 +00:00
|
|
|
VERSION = 0.7
|
2009-05-10 12:17:09 +00: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 19:52:22 +00:00
|
|
|
INCS = -I. -I/usr/include -I${X11INC} \
|
2013-04-19 19:11:29 +00:00
|
|
|
`pkg-config --cflags fontconfig` \
|
|
|
|
`pkg-config --cflags freetype2`
|
2015-09-28 18:08:58 +00:00
|
|
|
LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXft \
|
2013-04-19 19:11:29 +00:00
|
|
|
`pkg-config --libs fontconfig` \
|
|
|
|
`pkg-config --libs freetype2`
|
2010-08-28 01:18:22 +00:00
|
|
|
|
2009-05-10 12:17:09 +00:00
|
|
|
# flags
|
2015-03-20 06:46:59 +00:00
|
|
|
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=600
|
2013-03-05 21:12:11 +00:00
|
|
|
CFLAGS += -g -std=c99 -pedantic -Wall -Wvariadic-macros -Os ${INCS} ${CPPFLAGS}
|
2012-10-28 12:25:53 +00:00
|
|
|
LDFLAGS += -g ${LIBS}
|
2009-05-10 12:17:09 +00:00
|
|
|
|
|
|
|
# compiler and linker
|
2015-02-22 10:59:26 +00:00
|
|
|
# CC = cc
|
2012-11-13 19:13:39 +00:00
|
|
|
|