]> git.wh0rd.org - fontconfig.git/blame - src/Makefile.am
Fix multi-arch cache files: compute the position for the block to be added
[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
26no_undefined = -no-undefined
27export_symbols = -export-symbols fontconfig.def
28
29# gcc import library install/uninstall
30
31install-libtool-import-lib:
32 $(INSTALL) .libs/libfontconfig.dll.a $(DESTDIR)$(libdir)
c3941ba9 33 $(INSTALL) fontconfig.def $(DESTDIR)$(libdir)/fontconfig.def
daeed6e0
TL
34
35uninstall-libtool-import-lib:
36 -rm $(DESTDIR)$(libdir)/libfontconfig.dll.a $(DESTDIR)$(libdir)/fontconfig.def
37
38else
39
40install-libtool-import-lib:
41uninstall-libtool-import-lib:
42
43endif
44
45if MS_LIB_AVAILABLE
46
47# Microsoft import library install/uninstall
48
49noinst_DATA = fontconfig.lib
50
51fontconfig.lib : libfontconfig.la
52 lib -name:libfontconfig-$(lt_current_minus_age).dll -def:fontconfig.def -out:$@
53
54install-ms-import-lib:
55 $(INSTALL) fontconfig.lib $(DESTDIR)$(libdir)
56
57uninstall-ms-import-lib:
58 -rm $(DESTDIR)$(libdir)/fontconfig.lib
59
60else
61
15b49a7f
CW
62install-ms-import-lib:
63uninstall-ms-import-lib:
daeed6e0
TL
64
65endif
66
20fa60c9
KP
67INCLUDES = \
68 $(FREETYPE_CFLAGS) \
69 $(EXPAT_CFLAGS) \
6ae6acf3 70 $(WARN_CFLAGS) \
3a30abdb 71 -DFONTCONFIG_PATH='"$(CONFDIR)"' \
20fa60c9
KP
72 -I$(top_srcdir) \
73 -I$(top_srcdir)/src
daeed6e0
TL
74
75EXTRA_DIST = fontconfig.def.in
76
2e2121f9 77noinst_HEADERS=fcint.h
8fc10a72 78
20fa60c9
KP
79libfontconfig_la_SOURCES = \
80 fcatomic.c \
81 fcblanks.c \
82 fccache.c \
83 fccfg.c \
84 fccharset.c \
85 fcdbg.c \
86 fcdefault.c \
87 fcdir.c \
88 fcfreetype.c \
89 fcfs.c \
90 fcinit.c \
91 fclang.c \
92 fclist.c \
93 fcmatch.c \
94 fcmatrix.c \
95 fcname.c \
96 fcpat.c \
97 fcstr.c \
98 fcxml.c
daeed6e0 99
20fa60c9
KP
100lib_LTLIBRARIES = libfontconfig.la
101
102libfontconfig_la_LDFLAGS = \
daeed6e0 103 -version-info @LT_VERSION_INFO@ $(no_undefined) $(export_symbols)
20fa60c9
KP
104
105libfontconfig_la_LIBADD = $(FREETYPE_LIBS) $(EXPAT_LIBS)
106
daeed6e0
TL
107install-data-local: install-ms-import-lib install-libtool-import-lib
108
109uninstall-local: uninstall-ms-import-lib uninstall-libtool-import-lib
110