blob: 1ac625f24c0dc4a77fd889ac8335b4c5f4e16eb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
.POSIX:
CONFIGFILE = config.mk
include $(CONFIGFILE)
OS = linux
# Linux: linux
# Mac OS: macos
# Windows: windows
include mk/$(OS).mk
LIB_MAJOR = 1
LIB_MINOR = 0
LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
LIB_NAME = fonts
PUBLIC_OBJ =\
libfonts_calculate_subpixel_order.o\
libfonts_char_is_in_subset.o\
libfonts_create_transcoding_table.o\
libfonts_deallocate_encoding.o\
libfonts_deallocate_encoding_mapping.o\
libfonts_deallocate_encoding_mapping_entry.o\
libfonts_deallocate_encoding_mapping_entry_index_to_name.o\
libfonts_decode_font_description.o\
libfonts_do_decoded_font_descriptions_match.o\
libfonts_do_font_descriptions_match.o\
libfonts_encode_font_description.o\
libfonts_get_default_font.o\
libfonts_get_default_font_name.o\
libfonts_get_default_rendering_settings.o\
libfonts_get_font_root_dirs.o\
libfonts_get_output_dpi.o\
libfonts_get_output_rendering_settings.o\
libfonts_get_subpixel_expansion.o\
libfonts_get_subpixel_map.o\
libfonts_get_subpixel_order_class.o\
libfonts_parse_alias_line.o\
libfonts_parse_dir_line.o\
libfonts_parse_encoding_line.o\
libfonts_unget_subpixel_order_class.o\
libfonts_used_environs.o
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 = $(OBJ:.o=.test)
all: libfonts.a libfonts.$(LIBEXT) $(TESTS)
$(OBJ): $(HDR)
$(LOBJ): $(HDR)
$(TESTS): $(HDR) libfonts.a
.c.o:
$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
.c.lo:
$(CC) -fPIC -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
.c.test:
$(CC) -o $@ $< libfonts.a $(CFLAGS) $(CPPFLAGS) -DTEST $(LDFLAGS)
libfonts.a: $(OBJ)
@rm -f -- $@
$(AR) rc $@ $(OBJ)
$(AR) ts $@ > /dev/null
libfonts.$(LIBEXT): $(LOBJ)
$(CC) $(LIBFLAGS) -o $@ $(LOBJ) $(LDFLAGS)
check: $(TESTS)
@for t in $(TESTS); do printf './%s\n' $$t; ./$$t || exit 1; done
install: libfonts.a libfonts.$(LIBEXT)
mkdir -p -- "$(DESTDIR)$(PREFIX)/lib"
mkdir -p -- "$(DESTDIR)$(PREFIX)/include"
cp -- libfonts.a "$(DESTDIR)$(PREFIX)/lib/"
cp -- libfonts.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBMINOREXT)"
$(FIX_INSTALL_NAME) "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBMINOREXT)"
ln -sf -- libfonts.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBMAJOREXT)"
ln -sf -- libfonts.$(LIBMAJOREXT) "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBEXT)"
cp -- libfonts.h "$(DESTDIR)$(PREFIX)/include/"
uninstall:
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libfonts.a"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBMAJOREXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBMINOREXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libfonts.$(LIBEXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/include/libfonts.h"
clean:
-rm -f -- *.o *.a *.lo *.su *.so *.so.* *.dll *.dylib *.test
-rm -f -- *.gch *.gcov *.gcno *.gcda *.$(LIBEXT)
.SUFFIXES:
.SUFFIXES: .lo .o .c .test
.PHONY: all check install uninstall clean
|