diff options
author | Mattias Andrée <maandree@kth.se> | 2023-01-08 21:40:02 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-01-08 21:40:02 +0100 |
commit | 17a93f72f3343e6839f625972ba743ec61441c49 (patch) | |
tree | 7fc53e253e9e2aefad0f9a8d10edff0524198c75 /Makefile | |
parent | Fix error handling (diff) | |
download | libfonts-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-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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) |