diff options
author | zachir <zachir@librem.one> | 2021-08-16 18:22:39 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2021-08-16 18:22:39 -0500 |
commit | 5e61b38fb5c2e7b4100e2d391711c019870fb9d8 (patch) | |
tree | e051cf7bcb9932a7137b3324d904c43df2d54c41 /config.mk | |
parent | 65bae4da356c78d67eb8a1a69d258460a1360cb4 (diff) |
update
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -15,10 +15,12 @@ PKG_CONFIG = pkg-config # includes and libs INCS = -I$(X11INC) \ `$(PKG_CONFIG) --cflags fontconfig` \ - `$(PKG_CONFIG) --cflags freetype2` -LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \ + `$(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 freetype2` \ + `$(PKG_CONFIG) --libs harfbuzz` # flags STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 |