2019-09-16 07:35:57 +00:00
|
|
|
# st version
|
2020-06-25 10:43:25 +00:00
|
|
|
VERSION = 0.8.4
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
# Customize below to fit your system
|
|
|
|
|
|
|
|
# paths
|
|
|
|
PREFIX = /usr/local
|
|
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
|
|
|
|
X11INC = /usr/X11R6/include
|
|
|
|
X11LIB = /usr/X11R6/lib
|
|
|
|
|
|
|
|
PKG_CONFIG = pkg-config
|
|
|
|
|
2020-05-09 12:02:24 +00:00
|
|
|
# Uncomment this for the alpha patch / ALPHA_PATCH
|
2021-03-10 17:09:47 +00:00
|
|
|
#XRENDER = -lXrender
|
2020-05-09 12:02:24 +00:00
|
|
|
|
|
|
|
# Uncomment this for the themed cursor patch / THEMED_CURSOR_PATCH
|
|
|
|
#XCURSOR = -lXcursor
|
|
|
|
|
2021-05-09 13:06:02 +00:00
|
|
|
# Uncomment the lines below for the ligatures patch / LIGATURES_PATCH
|
|
|
|
#LIGATURES_C = hb.c
|
|
|
|
#LIGATURES_H = hb.h
|
|
|
|
#LIGATURES_INC = `$(PKG_CONFIG) --cflags harfbuzz`
|
|
|
|
#LIGATURES_LIBS = `$(PKG_CONFIG) --libs harfbuzz`
|
|
|
|
|
|
|
|
# Uncomment this for the SIXEL patch / SIXEL_PATCH
|
|
|
|
#SIXEL_C = sixel.c sixel_hls.c
|
|
|
|
|
2020-06-05 11:43:14 +00:00
|
|
|
# includes and libs, uncomment harfbuzz for the ligatures patch
|
2019-09-16 07:35:57 +00:00
|
|
|
INCS = -I$(X11INC) \
|
|
|
|
`$(PKG_CONFIG) --cflags fontconfig` \
|
2020-06-05 11:43:14 +00:00
|
|
|
`$(PKG_CONFIG) --cflags freetype2` \
|
2021-05-09 13:06:02 +00:00
|
|
|
$(LIGATURES_INC)
|
2020-05-09 12:02:24 +00:00
|
|
|
LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft ${XRENDER} ${XCURSOR}\
|
2019-09-16 07:35:57 +00:00
|
|
|
`$(PKG_CONFIG) --libs fontconfig` \
|
2020-06-05 11:43:14 +00:00
|
|
|
`$(PKG_CONFIG) --libs freetype2` \
|
2021-05-09 13:06:02 +00:00
|
|
|
$(LIGATURES_LIBS)
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
# flags
|
|
|
|
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
|
|
|
|
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
|
|
|
|
STLDFLAGS = $(LIBS) $(LDFLAGS)
|
|
|
|
|
|
|
|
# OpenBSD:
|
|
|
|
#CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
|
|
|
|
#LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
|
2021-02-15 13:37:37 +00:00
|
|
|
# `pkg-config --libs fontconfig` \
|
|
|
|
# `pkg-config --libs freetype2`
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
# compiler and linker
|
|
|
|
# CC = c99
|