diff options
| author | Mattias Andrée <maandree@kth.se> | 2023-01-08 16:23:56 +0100 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2023-01-08 16:23:56 +0100 | 
| commit | 627e5b9789c663343c74dac6535724ddc63aae1c (patch) | |
| tree | af78890b546b774267ff82520f0756dd159f8d86 /Makefile | |
| parent | Improve libfonts_get_default_font_name and draft implementation of libfonts_get_default_font (diff) | |
| download | libfonts-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 '')
| -rw-r--r-- | Makefile | 12 | 
1 files changed, 9 insertions, 3 deletions
| @@ -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) | 
