st/config.mk

36 lines
848 B
Makefile
Raw Normal View History

2009-05-10 12:17:09 +00:00
# st version
2019-02-09 11:48:39 +00:00
VERSION = 0.8.2
2009-05-10 12:17:09 +00:00
# Customize below to fit your system
# paths
2019-04-20 19:48:23 +00:00
PREFIX = /p/acd/proj/work/fe/masolkar/apps
MANPREFIX = $(PREFIX)/share/man
2009-05-10 12:17:09 +00:00
2019-04-20 19:48:23 +00:00
X11INC = /usr/intel/pkgs/X11/R7.6/include
X11LIB = /usr/intel/pkgs/X11/R7.6/lib
2009-05-10 12:17:09 +00:00
PKG_CONFIG = pkg-config
2019-04-20 19:48:23 +00:00
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
2009-05-10 12:17:09 +00:00
# includes and libs
2019-04-20 19:48:23 +00:00
INCS = -I$(X11INC) -I${FREETYPEINC}
LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil ${FREETYPELIBS}
2009-05-10 12:17:09 +00:00
# flags
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
2017-07-11 22:26:35 +00:00
STLDFLAGS = $(LIBS) $(LDFLAGS)
2009-05-10 12:17:09 +00:00
2018-05-25 09:59:28 +00:00
# OpenBSD:
#CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
#LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
# `pkg-config --libs fontconfig` \
# `pkg-config --libs freetype2`
2009-05-10 12:17:09 +00:00
# compiler and linker
# CC = c99