2004-12-05 06:49:20 +01:00
|
|
|
#
|
2008-08-13 09:30:23 +02:00
|
|
|
# fontconfig/src/Makefile.am
|
2004-12-05 06:49:20 +01:00
|
|
|
#
|
|
|
|
# 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
|
2010-11-10 22:45:42 +01:00
|
|
|
# documentation, and that the name of the author(s) not be used in
|
2004-12-05 06:49:20 +01:00
|
|
|
# advertising or publicity pertaining to distribution of the software without
|
2010-11-10 22:45:42 +01:00
|
|
|
# specific, written prior permission. The authors make no
|
2004-12-05 06:49:20 +01:00
|
|
|
# representations about the suitability of this software for any purpose. It
|
|
|
|
# is provided "as is" without express or implied warranty.
|
|
|
|
#
|
2009-03-12 21:00:08 +01:00
|
|
|
# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
2004-12-05 06:49:20 +01:00
|
|
|
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
2009-03-12 21:00:08 +01:00
|
|
|
# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
2004-12-05 06:49:20 +01:00
|
|
|
# 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.
|
|
|
|
|
2012-09-20 20:42:31 +02:00
|
|
|
EXTRA_DIST =
|
|
|
|
|
2003-03-22 22:25:34 +01:00
|
|
|
if OS_WIN32
|
|
|
|
|
|
|
|
export_symbols = -export-symbols fontconfig.def
|
|
|
|
|
2006-09-17 23:09:12 +02:00
|
|
|
fontconfig_def_dependency = fontconfig.def
|
|
|
|
|
2003-03-22 22:25:34 +01:00
|
|
|
# gcc import library install/uninstall
|
|
|
|
|
2013-01-22 04:11:56 +01:00
|
|
|
install-libtool-import-lib: libfontconfig.la
|
|
|
|
$(MKDIR_P) $(DESTDIR)$(libdir)
|
|
|
|
$(INSTALL) .libs/libfontconfig.dll.a $(DESTDIR)$(libdir)/libfontconfig.dll.a
|
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:
|
2012-03-16 08:29:53 +01:00
|
|
|
$(RM) $(DESTDIR)$(libdir)/libfontconfig.dll.a $(DESTDIR)$(libdir)/fontconfig.def
|
2003-03-22 22:25:34 +01:00
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
install-libtool-import-lib:
|
|
|
|
uninstall-libtool-import-lib:
|
|
|
|
|
2006-09-17 23:09:12 +02:00
|
|
|
fontconfig_def_dependency =
|
|
|
|
|
2003-03-22 22:25:34 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
if MS_LIB_AVAILABLE
|
|
|
|
|
|
|
|
# Microsoft import library install/uninstall
|
|
|
|
|
|
|
|
noinst_DATA = fontconfig.lib
|
|
|
|
|
|
|
|
fontconfig.lib : libfontconfig.la
|
2009-11-18 20:54:39 +01:00
|
|
|
lib -name:libfontconfig-@LIBT_CURRENT_MINUS_AGE@.dll -def:fontconfig.def -out:$@
|
2003-03-22 22:25:34 +01:00
|
|
|
|
|
|
|
install-ms-import-lib:
|
|
|
|
$(INSTALL) fontconfig.lib $(DESTDIR)$(libdir)
|
|
|
|
|
|
|
|
uninstall-ms-import-lib:
|
2012-03-16 08:29:53 +01:00
|
|
|
$(RM) $(DESTDIR)$(libdir)/fontconfig.lib
|
2003-03-22 22:25:34 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-04-07 02:02:58 +02:00
|
|
|
AM_CPPFLAGS = \
|
2006-04-25 07:57:41 +02:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/src \
|
2003-02-24 18:18:50 +01:00
|
|
|
$(FREETYPE_CFLAGS) \
|
2012-04-10 11:34:11 +02:00
|
|
|
$(ICONV_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) \
|
2006-08-04 18:13:00 +02:00
|
|
|
-DFC_CACHEDIR='"$(FC_CACHEDIR)"' \
|
2014-03-27 07:10:44 +01:00
|
|
|
-DFONTCONFIG_PATH='"$(BASECONFIGDIR)"' \
|
|
|
|
-DFC_TEMPLATEDIR='"$(TEMPLATEDIR)"'
|
2003-03-22 22:25:34 +01:00
|
|
|
|
2012-09-20 20:42:31 +02:00
|
|
|
EXTRA_DIST += makealias
|
2003-03-22 22:25:34 +01:00
|
|
|
|
2012-11-27 10:25:11 +01:00
|
|
|
noinst_HEADERS=fcint.h fcftint.h fcdeprecate.h fcstdint.h
|
2003-03-02 08:28:24 +01:00
|
|
|
|
2008-01-02 17:47:14 +01:00
|
|
|
ALIAS_FILES = fcalias.h fcaliastail.h fcftalias.h fcftaliastail.h
|
2006-09-05 11:24:01 +02:00
|
|
|
|
2009-11-18 15:35:40 +01:00
|
|
|
BUILT_SOURCES = $(ALIAS_FILES) \
|
|
|
|
../fc-case/fccase.h \
|
2012-11-27 10:25:11 +01:00
|
|
|
../fc-lang/fclang.h \
|
2012-09-20 20:42:31 +02:00
|
|
|
stamp-fcstdint \
|
2012-10-07 00:15:58 +02:00
|
|
|
fcobjshash.h \
|
|
|
|
fcobjshash.gperf
|
2009-11-17 18:10:01 +01:00
|
|
|
|
2010-12-28 07:59:19 +01:00
|
|
|
noinst_PROGRAMS = fcarch
|
|
|
|
|
2009-11-18 15:35:40 +01:00
|
|
|
../fc-case/fccase.h:
|
|
|
|
cd ../fc-case && $(MAKE) $(AM_MAKEFLAGS) fccase.h
|
|
|
|
../fc-lang/fclang.h:
|
|
|
|
cd ../fc-lang && $(MAKE) $(AM_MAKEFLAGS) fclang.h
|
2006-09-05 11:24:01 +02:00
|
|
|
|
2017-06-05 14:00:36 +02:00
|
|
|
fcobjshash.gperf: Makefile stamp-fcobjshash.gperf
|
|
|
|
-@$(RM) stamp-fcobjshash.gperf
|
|
|
|
@$(MAKE) stamp-fcobjshash.gperf
|
|
|
|
@touch -r stamp-fcobjshash.gperf $@
|
|
|
|
stamp-fcobjshash.gperf: fcobjshash.gperf.h fcobjs.h
|
2013-01-03 03:16:55 +01:00
|
|
|
$(AM_V_GEN) $(CPP) -I$(top_srcdir) $< | \
|
|
|
|
$(SED) 's/^ *//;s/ *, */,/' | \
|
|
|
|
$(GREP) '^[^#]' | \
|
|
|
|
awk ' \
|
|
|
|
/CUT_OUT_BEGIN/ { no_write=1; next; }; \
|
|
|
|
/CUT_OUT_END/ { no_write=0; next; }; \
|
|
|
|
{ if (!no_write) print; next; }; \
|
|
|
|
' - > $@.tmp && \
|
2017-06-05 14:00:36 +02:00
|
|
|
mv -f $@.tmp fcobjshash.gperf && touch $@ || ( $(RM) $@.tmp && false )
|
2012-09-20 20:42:31 +02:00
|
|
|
|
2017-06-03 12:02:53 +02:00
|
|
|
fcobjshash.h: Makefile fcobjshash.gperf
|
2017-07-31 16:56:06 +02:00
|
|
|
$(AM_V_GEN) $(GPERF) --pic -m 100 fcobjshash.gperf > $@.tmp && \
|
2013-01-03 03:16:55 +01:00
|
|
|
mv -f $@.tmp $@ || ( $(RM) $@.tmp && false )
|
2012-09-20 20:42:31 +02:00
|
|
|
|
|
|
|
EXTRA_DIST += \
|
2017-08-15 11:20:15 +02:00
|
|
|
fcobjshash.gperf.h
|
2012-09-20 20:42:31 +02:00
|
|
|
|
2003-02-24 18:18:50 +01:00
|
|
|
libfontconfig_la_SOURCES = \
|
2010-12-28 07:59:19 +01:00
|
|
|
fcarch.h \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcatomic.c \
|
2012-10-07 20:24:28 +02:00
|
|
|
fcatomic.h \
|
2003-02-24 18:18:50 +01:00
|
|
|
fccache.c \
|
|
|
|
fccfg.c \
|
|
|
|
fccharset.c \
|
2012-12-06 12:01:52 +01:00
|
|
|
fccompat.c \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcdbg.c \
|
|
|
|
fcdefault.c \
|
|
|
|
fcdir.c \
|
2008-12-30 02:00:26 +01:00
|
|
|
fcformat.c \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcfreetype.c \
|
|
|
|
fcfs.c \
|
2014-03-27 07:10:44 +01:00
|
|
|
fcptrlist.c \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcinit.c \
|
|
|
|
fclang.c \
|
|
|
|
fclist.c \
|
|
|
|
fcmatch.c \
|
|
|
|
fcmatrix.c \
|
2012-10-07 20:24:28 +02:00
|
|
|
fcmutex.h \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcname.c \
|
2012-09-20 20:42:31 +02:00
|
|
|
fcobjs.c \
|
|
|
|
fcobjs.h \
|
|
|
|
fcobjshash.h \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcpat.c \
|
2013-11-20 10:44:59 +01:00
|
|
|
fcrange.c \
|
2006-08-30 13:16:22 +02:00
|
|
|
fcserialize.c \
|
2012-04-29 12:56:16 +02:00
|
|
|
fcstat.c \
|
2003-02-24 18:18:50 +01:00
|
|
|
fcstr.c \
|
2014-07-25 23:59:26 +02:00
|
|
|
fcweight.c \
|
2013-01-03 00:35:56 +01:00
|
|
|
fcwindows.h \
|
2005-11-19 23:32:13 +01:00
|
|
|
fcxml.c \
|
|
|
|
ftglue.h \
|
|
|
|
ftglue.c
|
2003-03-22 22:25:34 +01:00
|
|
|
|
2003-02-24 18:18:50 +01:00
|
|
|
lib_LTLIBRARIES = libfontconfig.la
|
|
|
|
|
|
|
|
libfontconfig_la_LDFLAGS = \
|
2008-05-04 05:23:37 +02:00
|
|
|
-version-info @LIBT_VERSION_INFO@ -no-undefined $(export_symbols)
|
2003-02-24 18:18:50 +01:00
|
|
|
|
2006-04-25 17:33:07 +02:00
|
|
|
libfontconfig_la_LIBADD = $(ICONV_LIBS) $(FREETYPE_LIBS) $(LIBXML2_LIBS) $(EXPAT_LIBS)
|
2003-02-24 18:18:50 +01:00
|
|
|
|
2006-09-17 23:09:12 +02:00
|
|
|
libfontconfig_la_DEPENDENCIES = $(fontconfig_def_dependency)
|
|
|
|
|
2012-06-14 04:27:31 +02:00
|
|
|
if ENABLE_SHARED
|
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
|
2012-06-14 04:27:31 +02:00
|
|
|
endif
|
2003-03-22 22:25:34 +01:00
|
|
|
|
2006-09-05 11:24:01 +02:00
|
|
|
PUBLIC_FILES = \
|
|
|
|
$(top_srcdir)/fontconfig/fontconfig.h \
|
2007-11-14 00:48:30 +01:00
|
|
|
$(top_srcdir)/src/fcdeprecate.h \
|
|
|
|
$(top_srcdir)/fontconfig/fcprivate.h
|
2010-12-06 04:10:17 +01:00
|
|
|
|
2008-01-02 17:47:14 +01:00
|
|
|
PUBLIC_FT_FILES = \
|
|
|
|
$(top_srcdir)/fontconfig/fcfreetype.h
|
|
|
|
|
2006-09-07 02:43:08 +02:00
|
|
|
fcaliastail.h: fcalias.h
|
|
|
|
|
|
|
|
fcalias.h: $(top_srcdir)/src/makealias $(PUBLIC_FILES)
|
2012-03-16 08:29:53 +01:00
|
|
|
$(AM_V_GEN) sh $(top_srcdir)/src/makealias "$(top_srcdir)/src" fcalias.h fcaliastail.h $(PUBLIC_FILES)
|
2008-01-02 17:47:14 +01:00
|
|
|
|
|
|
|
fcftaliastail.h: fcftalias.h
|
|
|
|
|
|
|
|
fcftalias.h: $(top_srcdir)/src/makealias $(PUBLIC_FT_FILES)
|
2012-03-16 08:29:53 +01:00
|
|
|
$(AM_V_GEN) sh $(top_srcdir)/src/makealias "$(top_srcdir)/src" fcftalias.h fcftaliastail.h $(PUBLIC_FT_FILES)
|
2006-09-05 11:24:01 +02:00
|
|
|
|
2012-11-27 10:25:11 +01:00
|
|
|
stamp-fcstdint: $(top_builddir)/config.status
|
|
|
|
$(AM_V_GEN) cd $(top_builddir) && \
|
|
|
|
$(SHELL) ./config.status src/fcstdint.h
|
|
|
|
@touch $@
|
|
|
|
|
2012-10-07 00:15:58 +02:00
|
|
|
CLEANFILES = $(ALIAS_FILES) fontconfig.def
|
2017-07-05 10:35:28 +02:00
|
|
|
DISTCLEANFILES = \
|
|
|
|
stamp-fcstdint \
|
|
|
|
fcstdint.h \
|
|
|
|
stamp-fcobjshash.gperf \
|
|
|
|
fcobjshash.h \
|
|
|
|
fcobjshash.gperf
|
2006-09-17 23:09:12 +02:00
|
|
|
|
2008-05-04 05:17:16 +02:00
|
|
|
fontconfig.def: $(PUBLIC_FILES) $(PUBLIC_FT_FILES)
|
2006-09-17 23:09:12 +02:00
|
|
|
echo Generating $@
|
|
|
|
(echo EXPORTS; \
|
2008-05-04 05:17:16 +02:00
|
|
|
(cat $(PUBLIC_FILES) $(PUBLIC_FT_FILES) || echo 'FcERROR ()' ) | \
|
2013-01-03 03:16:55 +01:00
|
|
|
$(GREP) '^Fc[^ ]* *(' | $(SED) -e 's/ *(.*$$//' -e 's/^/ /' | \
|
2006-09-17 23:09:12 +02:00
|
|
|
sort; \
|
2008-05-04 05:23:37 +02:00
|
|
|
echo LIBRARY libfontconfig-@LIBT_CURRENT_MINUS_AGE@.dll; \
|
|
|
|
echo VERSION @LIBT_CURRENT@.@LIBT_REVISION@) >$@
|
2013-01-03 03:16:55 +01:00
|
|
|
@ ! $(GREP) -q FcERROR $@ || ($(RM) $@; false)
|
2012-10-06 23:52:39 +02:00
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|