aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-01-08 21:40:02 +0100
committerMattias Andrée <maandree@kth.se>2023-01-08 21:40:02 +0100
commit17a93f72f3343e6839f625972ba743ec61441c49 (patch)
tree7fc53e253e9e2aefad0f9a8d10edff0524198c75 /Makefile
parentFix error handling (diff)
downloadlibfonts-17a93f72f3343e6839f625972ba743ec61441c49.tar.gz
libfonts-17a93f72f3343e6839f625972ba743ec61441c49.tar.bz2
libfonts-17a93f72f3343e6839f625972ba743ec61441c49.tar.xz
Partially implement libfonts_get_default_font, libfonts_get_{default,output}_rendering_settings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c915208..71676a7 100644
--- a/Makefile
+++ b/Makefile
@@ -31,15 +31,21 @@ PUBLIC_OBJ =\
OBJ =\
$(PUBLIC_OBJ)\
+ libfonts_confsplit__.o\
libfonts_getenv__.o\
libfonts_gethome__.o\
+ libfonts_getline__.o\
+ libfonts_parse_aa__.o\
+ libfonts_parse_double__.o\
+ libfonts_parse_order__.o\
+ libfonts_parse_uint32__.o
HDR =\
common.h\
libfonts.h
LOBJ = $(OBJ:.o=.lo)
-TESTS = $(PUBLIC_OBJ:.o=.test)
+TESTS = $(OBJ:.o=.test)
all: libfonts.a libfonts.$(LIBEXT) $(TESTS)