diff options
author | Bert Münnich <ber.t@posteo.de> | 2016-08-06 15:27:58 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2016-08-06 15:27:58 +0200 |
commit | c280129cef4ff2e8667b8700c9bdf671fdd7c8ef (patch) | |
tree | f440d93fe935f2e68bb0460927097130160f97f0 /Makefile | |
parent | aabc2bddbdeecdb2651394d90b10a9290a69b527 (diff) |
Use Xft for font loading and text drawing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,9 +5,9 @@ MANPREFIX := $(PREFIX)/share/man CC ?= gcc CFLAGS += -std=c99 -Wall -pedantic -CPPFLAGS += -I$(PREFIX)/include -D_XOPEN_SOURCE=700 -LDFLAGS += -L$(PREFIX)/lib -LIBS := -lX11 -lImlib2 +CPPFLAGS += -I/usr/include/freetype2 -D_XOPEN_SOURCE=700 +LDFLAGS += +LIBS := -lImlib2 -lX11 -lXft # optional dependencies: # giflib: gif animations |