summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-01-19 10:47:49 -0700
committercflip <cflip@cflip.net>2023-01-19 13:08:18 -0700
commitd61a3f4921e55a753d4bc94de50dd7faffc3a348 (patch)
tree62e1393ff2ece4394f83c6fc7c339126d3e2a635 /Makefile
parent7b3c0c1530fe0cafa8e0937833fa925086253c87 (diff)
Load gzipped fonts from /usr/local/share/consolefonts/
The editor now loads fonts from /usr/ instead of the current working directory. Since they are gzipped the font loading code now uses zlib to read from the files. These fonts in particular were installed with `make install-psf` from the Terminus makefile, however the location may vary from system to system.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d543860..87445df 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CFLAGS=-std=c99 -g -Wall
-LFLAGS=-lSDL2
+LFLAGS=-lSDL2 -lz
OUT=editor
OBJS=main.o \