summaryrefslogtreecommitdiff
path: root/Build/source/utils/xindy-new/xindy/src/Makefile.am
blob: 7797540cf6fc76cdf531d80ef0bbb0c52a48228f (plain)
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
## Use `autoreconf' in top-level directory to recreate all
## autoconf/automake files.
## Or, call `automake Makefile' to create only Makefile.in.

## Copyright (C) 2004-2005 by Gour.
## Copyright (C) 2008,2009 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.

# Where the modules are found at runtime.
MODULEDIR = $(pkglibdir)/modules

# Since automake has no CLISP support, we need to explicitly add make
# rules to create the xindy kernel below and stop automake from
# looking for C sources.
mem_DATA = xindy.mem

# Tell the dist target about our sources, define the object files for
# our own rule and the .lib files for the clean definition. Don't use
# gmake-isms.
dist_xindy_mem_sources = base.lsp ordrules.lsp locref.lsp idxstyle.lsp \
			 index.lsp version.lsp markup.lsp
FAS                    = base.fas ordrules.fas locref.fas idxstyle.fas \
			 index.fas version.fas markup.fas
FASLIBS 	       = base.lib ordrules.lib locref.lib idxstyle.lib \
			 index.lib version.lib markup.lib

DEFAULTS   = defaults.xdy
DUMP_XINDY = dump-xindy.lsp
MEMFILE    = xindy.mem
CLISP      = @CLISP@ -q -E iso-8859-1

xindy.mem: $(DEFAULTS) $(FAS) $(DUMP_XINDY)
	rm -f $(MEMFILE)
	$(CLISP) $(srcdir)/$(DUMP_XINDY)
	gzip $(MEMFILE)
	mv $(MEMFILE).gz $(MEMFILE)

$(DEFAULTS): $(DEFAULTS).in Makefile
	sed 's|@MODULEDIR[@]|$(MODULEDIR)|g' <$(srcdir)/$(DEFAULTS).in >$(DEFAULTS)

EXTRA_DIST = $(DEFAULTS).in $(dist_xindy_mem_sources) dump-xindy.lsp

SUFFIXES = .fas .lsp
.lsp.fas:
	$(CLISP) -c $< -o $@


CLEANFILES = $(FAS) $(FASLIBS) $(DEFAULTS) xindy.mem

# Dependencies required for parallel make.
markup.fas: index.fas version.fas
index.fas: idxstyle.fas ordrules.fas
idxstyle.fas: locref.fas
locref.fas: base.fas