diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-17 19:44:16 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-17 19:44:16 -0500 |
commit | c47aa4c4279beb700ec18c83fcf74aafc77d76a4 (patch) | |
tree | 76692ddf485c4453b366ce8df41e35c879cac9d3 /stf/config.mk |
Initial commit to cgit and place all suckless programs within installer
Diffstat (limited to 'stf/config.mk')
-rwxr-xr-x | stf/config.mk | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/stf/config.mk b/stf/config.mk new file mode 100755 index 0000000..5c01de9 --- /dev/null +++ b/stf/config.mk @@ -0,0 +1,36 @@ +# st version +VERSION = 0.9 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = $(PREFIX)/share/man + +X11INC = /usr/local/include +X11LIB = /usr/local/lib + +PKG_CONFIG = pkgconf + +# includes and libs +INCS = -I. -I/usr/include -I${X11INC} \ + `$(PKG_CONFIG) --cflags fontconfig` \ + `$(PKG_CONFIG) --cflags freetype2` +LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXft -lXrender\ + `$(PKG_CONFIG) --libs fontconfig` \ + `$(PKG_CONFIG) --libs freetype2` + +# 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` +#MANPREFIX = ${PREFIX}/man + +# compiler and linker +# CC = c99 |