2004-12-05 06:49:20 +01:00
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# Copyright © 2003 Keith Packard
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
# documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
# the above copyright notice appear in all copies and that both that
|
|
|
|
# copyright notice and this permission notice appear in supporting
|
|
|
|
# documentation, and that the name of Keith Packard not be used in
|
|
|
|
# advertising or publicity pertaining to distribution of the software without
|
|
|
|
# specific, written prior permission. Keith Packard makes no
|
|
|
|
# representations about the suitability of this software for any purpose. It
|
|
|
|
# is provided "as is" without express or implied warranty.
|
|
|
|
#
|
|
|
|
# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
2003-03-22 22:25:34 +01:00
|
|
|
if OS_WIN32
|
|
|
|
|
|
|
|
no_undefined = -no-undefined
|
|
|
|
export_symbols = -export-symbols fontconfig.def
|
|
|
|
|
|
|
|
# gcc import library install/uninstall
|
|
|
|
|
|
|
|
install-libtool-import-lib:
|
|
|
|
$(INSTALL) .libs/libfontconfig.dll.a $(DESTDIR)$(libdir)
|
2003-06-16 00:35:52 +02:00
|
|
|
$(INSTALL) fontconfig.def $(DESTDIR)$(libdir)/fontconfig.def
|
2003-03-22 22:25:34 +01:00
|
|
|
|
|
|
|
uninstall-libtool-import-lib:
|
|
|
|
-rm $(DESTDIR)$(libdir)/libfontconfig.dll.a $(DESTDIR)$(libdir)/fontconfig.def
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
install-libtool-import-lib:
|
|
|
|
uninstall-libtool-import-lib:
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
if MS_LIB_AVAILABLE
|
|
|
|
|
|
|
|
# Microsoft import library install/uninstall
|
|
|
|
|
|
|
|
noinst_DATA = fontconfig.lib
|
|
|
|
|
|
|
|
fontconfig.lib : libfontconfig.la
|
|
|
|
lib -name:libfontconfig-$(lt_current_minus_age).dll -def:fontconfig.def -out:$@
|
|
|
|
|
|
|
|
install-ms-import-lib:
|
|
|
|
$(INSTALL) fontconfig.lib $(DESTDIR)$(libdir)
|
|
|
|
|
|
|
|
uninstall-ms-import-lib:
|
|
|
|
-rm $(DESTDIR)$(libdir)/fontconfig.lib
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2003-04-08 05:58:08 +02:00
|
|
|
install-ms-import-lib:
|
|
|
|
uninstall-ms-import-lib:
|
2003-03-22 22:25:34 +01:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2003-02-24 18:18:50 +01:00
|
|
|
INCLUDES = \
|
|
|
|
$(FREETYPE_CFLAGS) \
|
2005-09-29 22:53:30 +02:00
|
|
|
$(LIBXML2_CFLAGS) \
|
2003-02-24 18:18:50 +01:00
|
|
|
$(EXPAT_CFLAGS) \
|
2004-04-14 20:08:41 +02:00
|
|
|
$(WARN_CFLAGS) \
|
2003-04-17 23:50:24 +02:00
|
|
|
-DFONTCONFIG_PATH='"$(CONFDIR)"' \
|
2003-02-24 18:18:50 +01:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/src
|
2003-03-22 22:25:34 +01:00
|
|
|
|
|
|
|
EXTRA_DIST = fontconfig.def.in
|
|
|
|
|
2003-04-16 18:19:38 +02:00
|
|
|
noinst_HEADERS=fcint.h
|
2003-03-02 08:28:24 +01:00
|
|
|
|
2003-02-24 18:18:50 +01:00
|
|
|
libfontconfig_la_SOURCES = \
|
|
|
|
fcatomic.c \
|
|
|
|
fcblanks.c \
|
|
|
|
fccache.c \
|
|
|
|
fccfg.c \
|
|
|
|
fccharset.c \
|
|
|
|
fcdbg.c \
|
|
|
|
fcdefault.c \
|
|
|
|
fcdir.c \
|
|
|
|
fcfreetype.c \
|
|
|
|
fcfs.c \
|
|
|
|
fcinit.c \
|
|
|
|
fclang.c \
|
|
|
|
fclist.c \
|
|
|
|
fcmatch.c \
|
|
|
|
fcmatrix.c \
|
|
|
|
fcname.c \
|
|
|
|
fcpat.c \
|
|
|
|
fcstr.c \
|
|
|
|
fcxml.c
|
2003-03-22 22:25:34 +01:00
|
|
|
|
2003-02-24 18:18:50 +01:00
|
|
|
lib_LTLIBRARIES = libfontconfig.la
|
|
|
|
|
|
|
|
libfontconfig_la_LDFLAGS = \
|
2003-03-22 22:25:34 +01:00
|
|
|
-version-info @LT_VERSION_INFO@ $(no_undefined) $(export_symbols)
|
2003-02-24 18:18:50 +01:00
|
|
|
|
2005-09-29 22:53:30 +02:00
|
|
|
libfontconfig_la_LIBADD = $(FREETYPE_LIBS) $(LIBXML2_LIBS) $(EXPAT_LIBS)
|
2003-02-24 18:18:50 +01:00
|
|
|
|
2003-03-22 22:25:34 +01:00
|
|
|
install-data-local: install-ms-import-lib install-libtool-import-lib
|
|
|
|
|
|
|
|
uninstall-local: uninstall-ms-import-lib uninstall-libtool-import-lib
|
|
|
|
|