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