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