aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-01-08 16:23:56 +0100
committerMattias Andrée <maandree@kth.se>2023-01-08 16:23:56 +0100
commit627e5b9789c663343c74dac6535724ddc63aae1c (patch)
treeaf78890b546b774267ff82520f0756dd159f8d86 /Makefile
parentImprove libfonts_get_default_font_name and draft implementation of libfonts_get_default_font (diff)
downloadlibfonts-627e5b9789c663343c74dac6535724ddc63aae1c.tar.gz
libfonts-627e5b9789c663343c74dac6535724ddc63aae1c.tar.bz2
libfonts-627e5b9789c663343c74dac6535724ddc63aae1c.tar.xz
Add environment spoofing
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6a96f96..7790c0e 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
LIB_NAME = fonts
-OBJ =\
+PUBLIC_OBJ =\
libfonts_calculate_subpixel_order.o\
libfonts_decode_font_description.o\
libfonts_encode_font_description.o\
@@ -24,14 +24,20 @@ OBJ =\
libfonts_get_default_font_name.o\
libfonts_get_output_dpi.o\
libfonts_get_subpixel_order_class.o\
- libfonts_unget_subpixel_order_class.o
+ libfonts_unget_subpixel_order_class.o\
+ libfonts_used_environs.o
+
+OBJ =\
+ $(PUBLIC_OBJ)\
+ libfonts_getenv__.o\
+ libfonts_gethome__.o\
HDR =\
common.h\
libfonts.h
LOBJ = $(OBJ:.o=.lo)
-TESTS = $(OBJ:.o=.test)
+TESTS = $(PUBLIC_OBJ:.o=.test)
all: libfonts.a libfonts.$(LIBEXT) $(TESTS)