diff options
| author | ProsperousPotato <114923153+ProsperousPotato@users.noreply.github.com> | 2024-06-17 14:34:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-17 14:34:47 +0100 |
| commit | 83ef29065d004b3bc4bc9ad9d041d5f57a031452 (patch) | |
| tree | 9a976fa57537a77ea3938cf83e17d2d2417a8788 /config.mk | |
Add files via upload
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..ef6de39 --- /dev/null +++ b/config.mk @@ -0,0 +1,37 @@ +# st version +VERSION = 0.8.5 + +# 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 + +# includes and libs +INCS = -I$(X11INC) \ + `$(PKG_CONFIG) --cflags fontconfig` \ + `$(PKG_CONFIG) --cflags freetype2` \ + `$(PKG_CONFIG) --cflags harfbuzz` +LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft -lXrender\ + `$(PKG_CONFIG) --libs fontconfig` \ + `$(PKG_CONFIG) --libs freetype2` \ + `$(PKG_CONFIG) --libs harfbuzz` + +# 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 \ +# `$(PKG_CONFIG) --libs fontconfig` \ +# `$(PKG_CONFIG) --libs freetype2` + +# compiler and linker +# CC = c99 |
