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 115 116 117 118 119 120 121 122
|
## Makefile.am for the TeX Live subdirectory libs/teckit/
##
## Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
ACLOCAL_AMFLAGS = -I ../../m4
INCLUDES = -I$(top_srcdir)/source/Public-headers $(ZLIB_INCLUDES)
AM_CPPFLAGS = -DNDEBUG
AM_CFLAGS = $(WARNING_CFLAGS)
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
bin_PROGRAMS = teckit_compile
noinst_LIBRARIES = libTECkit_Compiler.a libTECkit.a
## teckit_compile
##
teckit_compile_SOURCES = \
source/Sample-tools/TECkit_Compile.cpp
teckit_compile_LDADD = libTECkit_Compiler.a $(ZLIB_LIBS)
teckit_compile_DEPENDENCIES = libTECkit_Compiler.a $(ZLIB_DEPEND)
## libTECkit_Compiler.a
##
libTECkit_Compiler_a_SOURCES = \
source/Compiler.cpp \
source/UnicodeNames.cpp
libTECkit_Compiler_a_DEPENDENCIES = $(ZLIB_DEPEND)
## libTECkit.a
##
libTECkit_a_SOURCES = \
source/Engine.cpp
## included from source/Engine.cpp
EXTRA_DIST = source/NormalizationData.c
libTECkit_a_DEPENDENCIES = $(ZLIB_DEPEND)
noinst_HEADERS = \
source/Compiler.h \
source/Engine.h \
source/Public-headers/TECkit_Common.h \
source/Public-headers/TECkit_Compiler.h \
source/Public-headers/TECkit_Engine.h \
source/TECkit_Format.h \
source/ulong_chartraits.h
## Rebuild zlib
@ZLIB_RULE@
## Tests
##
if build
TESTS = teckit.test
endif build
EXTRA_DIST += \
teckit.test \
tex-text.map \
tex-text.tec
## Files generated by TESTS
##
CLEANFILES = xtex-text.tec
## Not used
##
EXTRA_DIST += \
SFconv \
autogen.sh \
ax_misc.m4 \
ax_prog_rc.m4 \
bin \
docs/Calling_TECkit_from_VB.doc \
docs/Makefile.am \
docs/Makefile.in \
docs/TECkit_Binary_Format.doc \
docs/TECkit_Binary_Format.doc.pdf \
docs/TECkit_Language_2.1.doc \
docs/TECkit_Language_2.1.doc.pdf \
docs/TECkit_version_2.1.doc \
docs/TECkit_version_2.1.doc.pdf \
lib \
license/LICENSING.txt \
license/License_CPLv05.txt \
license/License_LGPLv21.txt \
source/Carbon.r \
source/Compiler_ver.rc \
source/Engine_ver.rc \
source/MakeNormData.pl \
source/MakeUnicodeNames.pl \
source/Makefile.am \
source/Perl \
source/Prefix_Mac.h \
source/Prefix_Win32.h \
source/Public-headers/Makefile.am \
source/REALplugin.cp \
source/Sample-tools/TECkit_Compile_ver.rc \
source/Sample-tools/TxtConv.cpp \
source/Sample-tools/TxtConv_ver.rc \
source/Sample-tools/version_defs.h \
source/TECkit_Compiler.cmd \
source/TECkit_Compiler.exp \
source/TECkit_Engine.cmd \
source/TECkit_Engine.exp \
source/test.cp \
source/version_defs.h \
test
# in case of an SVN repository
dist-hook:
rm -rf `find $(distdir) -name .svn`
## Original files
##
EXTRA_DIST += Makefile.am.orig configure.ac.orig
|