diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-03-27 02:20:22 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-03-27 02:20:22 +0000 |
commit | 5de3e7f7865dc0d21573dc0fa330aed4737c1881 (patch) | |
tree | 3e256f331c874d39d5e170945284885c29fca582 /Build/source/utils | |
parent | 92f9b4bbb8ba7e7bb3da6715616707b748e52aa4 (diff) |
make "make dist" and "make distcheck" work:
configure.ac: removed no-dist option from AM_INIT_AUTOMAKE
src/Makefile.am: new file
rte/ordrules/Makefile.am: new file, based on old Makefile.in
(rte/ordrules directory previously did not use automake)
other Makefile.am files - various cleanups to make "make distcheck" work
git-svn-id: svn://tug.org/texlive/trunk@7174 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils')
53 files changed, 182 insertions, 302 deletions
diff --git a/Build/source/utils/xindy/Makefile.am b/Build/source/utils/xindy/Makefile.am index 4ea465922c4..da221140f00 100644 --- a/Build/source/utils/xindy/Makefile.am +++ b/Build/source/utils/xindy/Makefile.am @@ -36,9 +36,9 @@ if BUILDDOCS DOCS = doc endif -SUBDIRS = rte binaries tex2xindy modules user-commands $(MAKE_RULES) $(DOCS) +SUBDIRS = rte binaries tex2xindy modules user-commands src $(MAKE_RULES) $(DOCS) -EXTRA_DIST = src setup.sh ChangeLog.Gour +EXTRA_DIST = setup.sh ChangeLog.Gour README-clisp distclean-local: rm -rf autom4te.cache diff --git a/Build/source/utils/xindy/configure.ac b/Build/source/utils/xindy/configure.ac index 9805d78d513..1ee78fdabbd 100644 --- a/Build/source/utils/xindy/configure.ac +++ b/Build/source/utils/xindy/configure.ac @@ -25,7 +25,7 @@ AC_PREREQ(2.60) AC_INIT([xindy], [2.3], [xindy-discuss@lists.sourceforge.net]) ## make dist doesn't work yet, since configure makes CLISP. -AM_INIT_AUTOMAKE([foreign no-dist]) +AM_INIT_AUTOMAKE([foreign]) AM_MAINTAINER_MODE # Checks for programs. @@ -193,7 +193,8 @@ AC_CONFIG_FILES([Makefile \ make-rules/inputenc/Makefile \ make-rules/styles/Makefile \ doc/Makefile \ - doc/style-tutorial/Makefile + doc/style-tutorial/Makefile \ + src/Makefile ]) AC_OUTPUT diff --git a/Build/source/utils/xindy/doc/Makefile.am b/Build/source/utils/xindy/doc/Makefile.am index c0d62452e0b..dff5707beda 100644 --- a/Build/source/utils/xindy/doc/Makefile.am +++ b/Build/source/utils/xindy/doc/Makefile.am @@ -45,10 +45,10 @@ FILES = \ mappings.gif \ README -EXTRA_DIST = $(FILES) - PDFS = xindy.pdf texindy.pdf tex2xindy.pdf +EXTRA_DIST = $(FILES) $(PDFS) + dist_noinst_DATA = xindy.v2.pdf makeindex4.pdf doc_DATA = $(FILES) $(PDFS) diff --git a/Build/source/utils/xindy/make-rules/alphabets/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/Makefile.am index 8d67ae3580e..0564812c0bd 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/Makefile.am @@ -142,7 +142,7 @@ ENGLISH = \ english/cp1252-lang.xdy \ english/cp1252-test.xdy \ english/cp1252.xdy \ - english/latin9-lang.xdy \ + english/latin9-lang.xdy \ english/latin9-test.xdy \ english/latin9.xdy \ english/utf8-lang.xdy \ @@ -865,7 +865,8 @@ SUBDIRS = \ SCRS = \ alphabets-doc.tex \ make-rules.pl \ - utf8-to-tex.sed + utf8-to-tex.sed \ + rom-comma-kludge.sed ALPHABETS = \ $(ALBANIAN) \ @@ -1167,9 +1168,9 @@ endif # (end BUILDDOCS) endif # end (BUILDRULES) DOC_CLEAN = \ - alphabets-doc.aux \ + alphabets-doc.aux \ alphabets-doc.log \ - alphabets-doc.out \ + alphabets-doc.out \ alphabets-doc.pdf \ alphabets-inc.tex \ alphabets-doc.toc diff --git a/Build/source/utils/xindy/make-rules/alphabets/albanian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/albanian/Makefile.am index 8e0fcda24ed..e9eab9c691e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/albanian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/albanian/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin1.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin1.raw \ latin1-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/belarusian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/belarusian/Makefile.am index c16f2620112..1dfaeb93af1 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/belarusian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/belarusian/Makefile.am @@ -19,9 +19,10 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1251.pl iso88595.pl isoir111.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1251.raw \ cp1251-doc.tex \ iso88595.raw \ @@ -30,8 +31,3 @@ CLEANFILES = \ isoir111-doc.tex \ utf8.raw \ utf8-doc.tex - - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/bulgarian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/bulgarian/Makefile.am index 4e8ed351ac9..872191e72db 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/bulgarian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/bulgarian/Makefile.am @@ -19,10 +19,10 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1251.pl iso88595.pl koi8-r.pl utf8.pl.in - +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1251.raw \ cp1251-doc.tex \ iso88595.raw \ @@ -31,7 +31,3 @@ CLEANFILES = \ koi8-r-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/croatian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/croatian/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/croatian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/croatian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/czech/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/czech/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/czech/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/czech/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/danish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/danish/Makefile.am index 99c3afdec44..dd30b144735 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/danish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/danish/Makefile.am @@ -19,19 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - cp1252.pl latin9.pl utf8.pl.in \ - latin1.xdy - +EXTRA_DIST = utf8.pl.in latin1.xdy CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/dutch/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/dutch/Makefile.am index d2ff67180d4..39df0120888 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/dutch/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/dutch/Makefile.am @@ -20,17 +20,15 @@ ## Boston, MA 02110-1301 USA. EXTRA_DIST = \ - ij-as-ij-latin1.pl ij-as-y-utf8.pl.in ij-as-ij-utf8.pl.in \ + ij-as-y-utf8.pl.in ij-as-ij-utf8.pl.in \ latin1.xdy tex-latin1.xdy CLEANFILES = \ + ij-as-ij-utf8.pl \ + ij-as-y-utf8.pl \ ij-as-ij-latin1.raw \ ij-as-ij-latin1-doc.tex \ ij-as-ij-utf8.raw \ ij-as-ij-utf8-doc.tex \ ij-as-y-utf8.raw \ ij-as-y-utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/english/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/english/Makefile.am index 2bfa518ac99..9688dd2538d 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/english/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/english/Makefile.am @@ -19,18 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - cp1252.pl latin9.pl utf8.pl.in \ - ascii.xdy tex-ascii.xdy +EXTRA_DIST = utf8.pl.in ascii.xdy tex-ascii.xdy CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ - latin9.raw \ + latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/esperanto/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/esperanto/Makefile.am index 626f6bb4be8..f67e090dbef 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/esperanto/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/esperanto/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin3.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin3.raw \ latin3-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/estonian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/estonian/Makefile.am index b6f8f4c27a0..49a784c18a8 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/estonian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/estonian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1252.pl latin9.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/finnish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/finnish/Makefile.am index f2524aa4255..deb0cfea521 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/finnish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/finnish/Makefile.am @@ -19,19 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - cp1252.pl latin9.pl utf8.pl.in \ - tex-cp1252.xdy tex-latin9.xdy - +EXTRA_DIST = utf8.pl.in tex-cp1252.xdy tex-latin9.xdy CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/french/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/french/Makefile.am index b6f8f4c27a0..49a784c18a8 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/french/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/french/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1252.pl latin9.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/general/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/general/Makefile.am index 8749ed9c5e1..cf02954d1b1 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/general/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/general/Makefile.am @@ -19,11 +19,10 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - cp1252.pl cp850.pl latin9.pl template.pl utf8.pl.in \ - latin1.xdy +EXTRA_DIST = template.pl utf8.pl.in latin1.xdy CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ cp850.raw \ @@ -32,7 +31,3 @@ CLEANFILES = \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/georgian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/georgian/Makefile.am index 335df3f4f71..8390f444c0e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/georgian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/georgian/Makefile.am @@ -22,9 +22,6 @@ EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/german/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/german/Makefile.am index 647016cdbfe..193a4547b4e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/german/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/german/Makefile.am @@ -20,22 +20,20 @@ ## Boston, MA 02110-1301 USA. EXTRA_DIST = \ - braille-utf8.pl.in duden-latin1.pl \ - din5007-latin1.pl duden-utf8.pl.in din5007-utf8.pl.in \ + braille-utf8.pl.in duden-utf8.pl.in din5007-utf8.pl.in \ tex-din5007-latin1.xdy tex-duden-latin1.xdy tex-latin1.xdy CLEANFILES = \ + braille-utf8.pl \ braille-utf8.raw \ braille-utf8-doc.tex \ + din5007-utf8.pl \ din5007-latin1.raw \ din5007-latin1-doc.tex \ din5007-utf8.raw \ din5007-utf8-doc.tex \ + duden-utf8.pl \ duden-latin1.raw \ duden-latin1-doc.tex \ duden-utf8.raw \ duden-utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/greek/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/greek/Makefile.am index 47b0e986100..3962874a2c3 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/greek/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/greek/Makefile.am @@ -19,24 +19,19 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - iso88597.pl polytonic-utf8.pl.in utf8.pl.in \ - translit-latin4.pl translit-utf8.pl.in \ - translit-tex.xdy - +EXTRA_DIST = polytonic-utf8.pl.in utf8.pl.in translit-utf8.pl.in translit-tex.xdy CLEANFILES = \ iso88597.raw \ iso88597-doc.tex \ + polytonic-utf8.pl \ polytonic-utf8.raw \ polytonic-utf8-doc.tex \ + translit-utf8.pl \ translit-latin4.raw \ translit-latin4-doc.tex \ translit-utf8.raw \ translit-utf8-doc.tex \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/gypsy/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/gypsy/Makefile.am index 69f1cebd123..14f52a77e2b 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/gypsy/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/gypsy/Makefile.am @@ -22,8 +22,6 @@ EXTRA_DIST = northrussian-utf8.pl.in CLEANFILES = \ + northrussian-utf8.pl \ northrussian-utf8.raw \ northrussian-utf8-doc.tex - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/hausa/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/hausa/Makefile.am index 335df3f4f71..8390f444c0e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/hausa/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/hausa/Makefile.am @@ -22,9 +22,6 @@ EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/hebrew/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/hebrew/Makefile.am index 69b552b0559..4b710f5054b 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/hebrew/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/hebrew/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = iso88598.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ iso88598.raw \ iso88598-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/hungarian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/hungarian/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/hungarian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/hungarian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/icelandic/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/icelandic/Makefile.am index d82e1ebb615..dd30b144735 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/icelandic/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/icelandic/Makefile.am @@ -19,19 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - cp1252.pl latin9.pl utf8.pl.in \ - latin1.xdy - +EXTRA_DIST = utf8.pl.in latin1.xdy CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/italian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/italian/Makefile.am index 8e0fcda24ed..e9eab9c691e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/italian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/italian/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin1.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin1.raw \ latin1-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/klingon/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/klingon/Makefile.am index 306bbcfa66d..78df923da29 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/klingon/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/klingon/Makefile.am @@ -23,11 +23,7 @@ EXTRA_DIST = \ utf8.pl.in \ translit-ascii.pl - CLEANFILES = \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/kurdish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/kurdish/Makefile.am index e0fa0e0b853..49aa599fd80 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/kurdish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/kurdish/Makefile.am @@ -19,20 +19,16 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - bedirxan-latin5.pl bedirxan-utf8.pl.in \ - turkish-i-latin5.pl turkish-i-utf8.pl.in \ - latin5.xdy +EXTRA_DIST = bedirxan-utf8.pl.in turkish-i-utf8.pl.in latin5.xdy CLEANFILES = \ + bedirxan-utf8.pl \ bedirxan-latin5.raw \ bedirxan-latin5-doc.tex \ bedirxan-utf8.raw \ bedirxan-utf8-doc.tex \ + turkish-i-utf8.pl \ turkish-i-latin5.raw \ turkish-i-latin5-doc.tex \ turkish-i-utf8.raw \ turkish-i-utf8-doc.tex - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/latin/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/latin/Makefile.am index 335df3f4f71..8390f444c0e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/latin/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/latin/Makefile.am @@ -22,9 +22,6 @@ EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/latvian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/latvian/Makefile.am index 430a5d77d83..98b09e1d0bd 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/latvian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/latvian/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin4.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin4.raw \ latin4-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/lithuanian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/lithuanian/Makefile.am index 430a5d77d83..98b09e1d0bd 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/lithuanian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/lithuanian/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin4.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin4.raw \ latin4-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/lower-sorbian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/lower-sorbian/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/lower-sorbian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/lower-sorbian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/macedonian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/macedonian/Makefile.am index 6327f7b6dde..1dfaeb93af1 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/macedonian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/macedonian/Makefile.am @@ -19,9 +19,10 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1251.pl iso88595.pl isoir111.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1251.raw \ cp1251-doc.tex \ iso88595.raw \ @@ -30,7 +31,3 @@ CLEANFILES = \ isoir111-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/mongolian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/mongolian/Makefile.am index 8179ba607b0..15ac5c2a8d3 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/mongolian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/mongolian/Makefile.am @@ -22,9 +22,6 @@ EXTRA_DIST = cyrillic-utf8.pl.in CLEANFILES = \ + cyrillic-utf8.pl \ cyrillic-utf8.raw \ cyrillic-utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/norwegian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/norwegian/Makefile.am index 8e0fcda24ed..e9eab9c691e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/norwegian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/norwegian/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin1.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin1.raw \ latin1-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/polish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/polish/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/polish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/polish/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/portuguese/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/portuguese/Makefile.am index 8e0fcda24ed..e9eab9c691e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/portuguese/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/portuguese/Makefile.am @@ -19,14 +19,11 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin1.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin1.raw \ latin1-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/romanian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/romanian/Makefile.am index 0b84363ba45..1fbdd740b48 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/romanian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/romanian/Makefile.am @@ -19,14 +19,12 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + latin2.pl \ latin2.raw \ latin2-doc.tex \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/russian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/russian/Makefile.am index 1ecb21a4166..62b1bcefb72 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/russian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/russian/Makefile.am @@ -20,8 +20,8 @@ ## Boston, MA 02110-1301 USA. EXTRA_DIST = \ - cp1251.pl iso88595.pl koi8-r.pl translit-iso-utf8.pl.in utf8.pl.in \ - translit-iso-tex.xdy translit-tex.xdy translit-tgl-tex.xdy + translit-iso-utf8.pl.in utf8.pl.in \ + translit-iso-tex.xdy translit-tex.xdy translit-tgl-tex.xdy CLEANFILES = \ cp1251.raw \ @@ -30,11 +30,9 @@ CLEANFILES = \ iso88595-doc.tex \ koi8-r.raw \ koi8-r-doc.tex \ + translit-iso-utf8.pl \ translit-iso-utf8.raw \ translit-iso-utf8-doc.tex \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/serbian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/serbian/Makefile.am index 6327f7b6dde..1dfaeb93af1 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/serbian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/serbian/Makefile.am @@ -19,9 +19,10 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1251.pl iso88595.pl isoir111.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1251.raw \ cp1251-doc.tex \ iso88595.raw \ @@ -30,7 +31,3 @@ CLEANFILES = \ isoir111-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/slovak/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/slovak/Makefile.am index e1522102b9c..5f3270b8c08 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/slovak/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/slovak/Makefile.am @@ -19,24 +19,20 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - large-cp1250.pl large-latin2.pl large-utf8.pl.in \ - small-cp1250.pl small-latin2.pl small-utf8.pl.in +EXTRA_DIST = large-utf8.pl.in small-utf8.pl.in CLEANFILES = \ + large-utf8.pl \ large-cp1250.raw \ large-cp1250-doc.tex \ large-latin2.raw \ large-latin2-doc.tex \ large-utf8.raw \ large-utf8-doc.tex \ + small-utf8.pl \ small-cp1250.raw \ small-cp1250-doc.tex \ small-latin2.raw \ small-latin2-doc.tex \ small-utf8.raw \ small-utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/slovenian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/slovenian/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/slovenian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/slovenian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/spanish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/spanish/Makefile.am index e43c9215567..9c6712e5526 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/spanish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/spanish/Makefile.am @@ -19,20 +19,16 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - modern-latin1.pl modern-utf8.pl.in \ - traditional-latin1.pl traditional-utf8.pl.in +EXTRA_DIST = modern-utf8.pl.in traditional-utf8.pl.in CLEANFILES = \ + modern-utf8.pl \ modern-latin1.raw \ modern-latin1-doc.tex \ modern-utf8.raw \ modern-utf8-doc.tex \ + traditional-utf8.pl \ traditional-latin1.raw \ traditional-latin1-doc.tex \ traditional-utf8.raw \ traditional-utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/swedish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/swedish/Makefile.am index 4d431bde4e5..dd30b144735 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/swedish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/swedish/Makefile.am @@ -19,18 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = \ - cp1252.pl latin9.pl utf8.pl.in \ - latin1.xdy +EXTRA_DIST = utf8.pl.in latin1.xdy CLEANFILES = \ + utf8.pl \ cp1252.raw \ cp1252-doc.tex \ latin9.raw \ latin9-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/turkish/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/turkish/Makefile.am index 12469864954..f8684a4dbe1 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/turkish/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/turkish/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = latin3.pl latin5.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ latin3.raw \ latin3-doc.tex \ latin5.raw \ latin5-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/ukrainian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/ukrainian/Makefile.am index f8d99422527..5f88db51ea9 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/ukrainian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/ukrainian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1251.pl koi8-u.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1251.raw \ cp1251-doc.tex \ koi8-u.raw \ koi8-u-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/upper-sorbian/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/upper-sorbian/Makefile.am index b8338cda68a..c8f7561065e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/upper-sorbian/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/upper-sorbian/Makefile.am @@ -19,16 +19,13 @@ ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301 USA. -EXTRA_DIST = cp1250.pl latin2.pl utf8.pl.in +EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ cp1250.raw \ cp1250-doc.tex \ latin2.raw \ latin2-doc.tex \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/make-rules/alphabets/vietnamese/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/vietnamese/Makefile.am index 335df3f4f71..8390f444c0e 100644 --- a/Build/source/utils/xindy/make-rules/alphabets/vietnamese/Makefile.am +++ b/Build/source/utils/xindy/make-rules/alphabets/vietnamese/Makefile.am @@ -22,9 +22,6 @@ EXTRA_DIST = utf8.pl.in CLEANFILES = \ + utf8.pl \ utf8.raw \ utf8-doc.tex - - - - diff --git a/Build/source/utils/xindy/rte/Makefile.am b/Build/source/utils/xindy/rte/Makefile.am index 98e32dbc474..24dbfee680f 100644 --- a/Build/source/utils/xindy/rte/Makefile.am +++ b/Build/source/utils/xindy/rte/Makefile.am @@ -52,7 +52,7 @@ clisp_modules := --with-dynamic-ffi --ignore-absence-of-libsigsegv # clisp_modules += --without-readline #endif -all: xindy-build-dir +all-local: xindy-build-dir if !EXT_CLISP $(clisp_builddir): $(clisp_src) @@ -74,7 +74,7 @@ ORDRULES_FILES = ordrules.c ordrules.h rxsub.c rxsub.h mkind.h debug.h link.sh xindy-build-dir: $(CLISP_PREREQ) rm -rf xindy-build-dir - test -f ordrules/link.sh || for i in $(ORDRULES_FILES); do cp -p $(top_srcdir)/rte/ordrules/$$i ordrules/; done + test -f ordrules/link.sh || for i in $(ORDRULES_FILES); do cp -p $(top_srcdir)/rte/ordrules/$$i ordrules/$$i; done $(MAKE) -C ordrules ordrulei.c sh $(clisp_link) add-module-set ordrules $(fulldir) $@ cp $@/lisp.run $(binariesdir)/xindy.run @@ -82,19 +82,17 @@ xindy-build-dir: $(CLISP_PREREQ) clean-local: rm -rf xindy-build-dir - $(MAKE) -C ordrules clean + test "$(builddir)" != "$(srcdir)" && for i in $(ORDRULES_FILES); do rm -f ordrules/$$i; done if !EXT_CLISP if [ -e $(clisp_builddir) ]; then $(MAKE) -C $(clisp_builddir) clean; fi endif +if !EXT_CLISP # remove some extra files to match pristine clisp source distclean-local: clean - $(MAKE) -C ordrules distclean -if !EXT_CLISP rm -rf $(clisp_builddir) endif -# dist rules for clisp are handled via 'darcs dist', so here we include -# only the rest of the 'rte' package + modified clisp's configure script!! +SUBDIRS = ordrules -EXTRA_DIST = NEWS README configure ordrules $(clisp_src)/configure +EXTRA_DIST = NEWS README diff --git a/Build/source/utils/xindy/rte/ordrules/Makefile.am b/Build/source/utils/xindy/rte/ordrules/Makefile.am new file mode 100644 index 00000000000..ebb3316f216 --- /dev/null +++ b/Build/source/utils/xindy/rte/ordrules/Makefile.am @@ -0,0 +1,45 @@ +## Use `autoreconf' in top-level directory to recreate all +## autoconf/automake files. +## Or, call `automake Makefile' to create only Makefile.in. + +# Makefile for xindy + +## Copyright (C) 2004-2005 by Gour. +## Copyright (C) 2008 by Joachim Schrod. +## +## This program is free software; you can redistribute it and/or +## modify it under the terms of the GNU General Public License as +## published by the Free Software Foundation; either version 2 of the +## License, or (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program in the file COPYING; if not, write to the +## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +## Boston, MA 02110-1301 USA. + +INCLUDES= + +ordrulei.c: $(srcdir)/ordrulei.lsp + $(CLISP) -q -norc -c $(srcdir)/ordrulei.lsp -o ordrulei.fas + +ordrulei.o: ordrulei.c + $(CC) $(CFLAGS) -I$(INCLUDES) -c ordrulei.c + +ordrules.o: ordrules.c ordrules.h rxsub.h debug.h mkind.h + $(CC) $(CFLAGS) -funsigned-char -I. -c ordrules.c + +rxsub.o: rxsub.c rxsub.h mkind.h + $(CC) $(CFLAGS) -I. -c rxsub.c + +# Make a module +clisp-module: ordrulei.o ordrules.o rxsub.o + +EXTRA_DIST = ordrulei.lsp ordrules.c ordrules.h rxsub.c rxsub.h mkind.h debug.h link.sh + +CLEANFILES = ordrulei.c ordrulei.fas ordrulei.lib ordrulei.o ordrules.o rxsub.o version.lisp + diff --git a/Build/source/utils/xindy/rte/ordrules/Makefile.in b/Build/source/utils/xindy/rte/ordrules/Makefile.in deleted file mode 100644 index 1726d2bbfca..00000000000 --- a/Build/source/utils/xindy/rte/ordrules/Makefile.in +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: Makefile.in,v 1.2 2005/06/14 01:41:56 jschrod Exp $ -#------------------------------------------------------------ - -# -# Makefile for CLISP module ordrules -# -# copied from CLISP module regex - -@SET_MAKE@ -srcdir = @srcdir@ -CC = @CC@ -CPPFLAGS = @CPPFLAGS@ -CFLAGS = @CFLAGS@ -INCLUDES= - -all : ordrulei.o ordrules.o rxsub.o - -ordrulei.c : $(srcdir)/ordrulei.lsp - $(CLISP) -q -norc -c $(srcdir)/ordrulei.lsp -o ordrulei.fas - -ordrulei.o : ordrulei.c - $(CC) $(CFLAGS) -I$(INCLUDES) -c ordrulei.c - -ordrules.o : ordrules.c ordrules.h rxsub.h debug.h mkind.h - $(CC) $(CFLAGS) -funsigned-char -I. -c ordrules.c - -rxsub.o : rxsub.c rxsub.h mkind.h - $(CC) $(CFLAGS) -I. -c rxsub.c - -# Make a module -clisp-module : all - -clean: - rm -f core ordrulei.c *.o *.a - rm -f *.fas *.lib - -distclean: clean - rm -f version.lisp Makefile diff --git a/Build/source/utils/xindy/src/Makefile.am b/Build/source/utils/xindy/src/Makefile.am new file mode 100644 index 00000000000..528c9d7ef48 --- /dev/null +++ b/Build/source/utils/xindy/src/Makefile.am @@ -0,0 +1,25 @@ +## Use `autoreconf' in top-level directory to recreate all +## autoconf/automake files. +## Or, call `automake Makefile' to create only Makefile.in. + +# Makefile for xindy + +## Copyright (C) 2004-2005 by Gour. +## Copyright (C) 2008 by Joachim Schrod. +## +## This program is free software; you can redistribute it and/or +## modify it under the terms of the GNU General Public License as +## published by the Free Software Foundation; either version 2 of the +## License, or (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program in the file COPYING; if not, write to the +## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +## Boston, MA 02110-1301 USA. + +EXTRA_DIST = base.lsp dump-xindy.lsp idxstyle.lsp index.lsp locref.lsp markup.lsp version.lsp diff --git a/Build/source/utils/xindy/user-commands/Makefile.am b/Build/source/utils/xindy/user-commands/Makefile.am index da64795efb3..781e657b35f 100644 --- a/Build/source/utils/xindy/user-commands/Makefile.am +++ b/Build/source/utils/xindy/user-commands/Makefile.am @@ -40,9 +40,7 @@ man_MANS = texindy.1 xindy.1 dist_noinst_SCRIPTS = xindy.v2 makeindex4 -dist_noinst_MANS = xindy.v2.1 makeindex4.1 - -EXTRA_DIST = $(man_MANS) +EXTRA_DIST = $(man_MANS) xindy.in xindy.v2.1 makeindex4.1 CLEANFILES = xindy |