]> git.wh0rd.org - fontconfig.git/blame - src/Makefile.am
Rework cache files to use offsets for all data structures.
[fontconfig.git] / src / Makefile.am
CommitLineData
c5a0b541
KP
1#
2# $Id$
3#
4# Copyright © 2003 Keith Packard
5#
6# Permission to use, copy, modify, distribute, and sell this software and its
7# documentation for any purpose is hereby granted without fee, provided that
8# the above copyright notice appear in all copies and that both that
9# copyright notice and this permission notice appear in supporting
10# documentation, and that the name of Keith Packard not be used in
11# advertising or publicity pertaining to distribution of the software without
12# specific, written prior permission. Keith Packard makes no
13# representations about the suitability of this software for any purpose. It
14# is provided "as is" without express or implied warranty.
15#
16# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22# PERFORMANCE OF THIS SOFTWARE.
23
daeed6e0
TL
24if OS_WIN32
25
daeed6e0
TL
26export_symbols = -export-symbols fontconfig.def
27
28# gcc import library install/uninstall
29
30install-libtool-import-lib:
31 $(INSTALL) .libs/libfontconfig.dll.a $(DESTDIR)$(libdir)
c3941ba9 32 $(INSTALL) fontconfig.def $(DESTDIR)$(libdir)/fontconfig.def
daeed6e0
TL
33
34uninstall-libtool-import-lib:
35 -rm $(DESTDIR)$(libdir)/libfontconfig.dll.a $(DESTDIR)$(libdir)/fontconfig.def
36
37else
38
39install-libtool-import-lib:
40uninstall-libtool-import-lib:
41
42endif
43
44if MS_LIB_AVAILABLE
45
46# Microsoft import library install/uninstall
47
48noinst_DATA = fontconfig.lib
49
50fontconfig.lib : libfontconfig.la
51 lib -name:libfontconfig-$(lt_current_minus_age).dll -def:fontconfig.def -out:$@
52
53install-ms-import-lib:
54 $(INSTALL) fontconfig.lib $(DESTDIR)$(libdir)
55
56uninstall-ms-import-lib:
57 -rm $(DESTDIR)$(libdir)/fontconfig.lib
58
59else
60
15b49a7f
CW
61install-ms-import-lib:
62uninstall-ms-import-lib:
daeed6e0
TL
63
64endif
65
20fa60c9 66INCLUDES = \
f045376c
PL
67 -I$(top_srcdir) \
68 -I$(top_srcdir)/src \
20fa60c9 69 $(FREETYPE_CFLAGS) \
e99f0f0a 70 $(LIBXML2_CFLAGS) \
20fa60c9 71 $(EXPAT_CFLAGS) \
6ae6acf3 72 $(WARN_CFLAGS) \
7410e40b 73 -DFC_CACHEDIR='"$(FC_CACHEDIR)"' \
f045376c 74 -DFONTCONFIG_PATH='"$(CONFDIR)"'
daeed6e0
TL
75
76EXTRA_DIST = fontconfig.def.in
77
2e2121f9 78noinst_HEADERS=fcint.h
8fc10a72 79
20fa60c9
KP
80libfontconfig_la_SOURCES = \
81 fcatomic.c \
82 fcblanks.c \
83 fccache.c \
84 fccfg.c \
85 fccharset.c \
86 fcdbg.c \
87 fcdefault.c \
88 fcdir.c \
89 fcfreetype.c \
90 fcfs.c \
91 fcinit.c \
92 fclang.c \
93 fclist.c \
94 fcmatch.c \
95 fcmatrix.c \
96 fcname.c \
97 fcpat.c \
7ce19673 98 fcserialize.c \
20fa60c9 99 fcstr.c \
8ebf7725
PL
100 fcxml.c \
101 ftglue.h \
102 ftglue.c
daeed6e0 103
20fa60c9
KP
104lib_LTLIBRARIES = libfontconfig.la
105
106libfontconfig_la_LDFLAGS = \
edffd3b9 107 -version-info @LT_VERSION_INFO@ -no-undefined $(export_symbols)
20fa60c9 108
73775d8f 109libfontconfig_la_LIBADD = $(ICONV_LIBS) $(FREETYPE_LIBS) $(LIBXML2_LIBS) $(EXPAT_LIBS)
20fa60c9 110
daeed6e0
TL
111install-data-local: install-ms-import-lib install-libtool-import-lib
112
113uninstall-local: uninstall-ms-import-lib uninstall-libtool-import-lib
114