dwt1--dotfiles/st/config.mk

36 lines
904 B
Makefile
Raw Normal View History

2019-01-28 04:53:56 +00:00
# st version
2019-02-12 18:05:25 +00:00
VERSION = 0.8.2
2019-01-28 04:53:56 +00:00
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
2019-02-12 18:05:25 +00:00
PKG_CONFIG = pkg-config
2019-01-28 04:53:56 +00:00
# includes and libs
INCS = -I. -I/usr/include -I${X11INC} \
2019-02-12 18:05:25 +00:00
`$(PKG_CONFIG) --cflags fontconfig` \
`$(PKG_CONFIG) --cflags freetype2`
2019-01-28 04:53:56 +00:00
LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXft -lXrender\
2019-02-12 18:05:25 +00:00
`$(PKG_CONFIG) --libs fontconfig` \
`$(PKG_CONFIG) --libs freetype2`
2019-01-28 04:53:56 +00:00
# flags
2019-02-12 18:05:25 +00:00
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
2019-01-28 04:53:56 +00:00
STLDFLAGS = $(LIBS) $(LDFLAGS)
2019-02-12 18:05:25 +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`
2019-01-28 04:53:56 +00:00
# compiler and linker
# CC = c99