diff options
| author | Lucas Gabriel Vuotto <lvuotto92@gmail.com> | 2018-03-10 02:44:39 -0300 |
|---|---|---|
| committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-03-11 13:21:25 +0100 |
| commit | b5f9ec647aae2d9a1d3bd586eb7523a4e0a329a3 (patch) | |
| tree | a32f75a02969455bd89a17c7cdf99344e9377303 /config.mk | |
| parent | a327374a23abf7f75a8a149c4f333cc49d17b07e (diff) | |
| download | tabbed-b5f9ec647aae2d9a1d3bd586eb7523a4e0a329a3.tar.gz | |
Add OpenBSD support to config.mk
Signed-off-by: Lucas Gabriel Vuotto <lgv@nanashi.co>
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -7,9 +7,18 @@ VERSION = 0.6 PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# freetype +FREETYPELIBS = -lfontconfig -lXft +FREETYPEINC = /usr/include/freetype2 +# OpenBSD (uncomment) +#FREETYPEINC = ${X11INC}/freetype2 + # includes and libs -INCS = -I. -I/usr/include -I/usr/include/freetype2 -LIBS = -L/usr/lib -lc -lX11 -lfontconfig -lXft +INCS = -I. -I/usr/include -I$(X11INC) -I${FREETYPEINC} +LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${FREETYPELIBS} # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE |