diff options
Diffstat (limited to 'Build/source/utils/xindy/binaries')
-rw-r--r-- | Build/source/utils/xindy/binaries/Makefile.am | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Build/source/utils/xindy/binaries/Makefile.am b/Build/source/utils/xindy/binaries/Makefile.am index dcb7575a8e3..dd519c1a336 100644 --- a/Build/source/utils/xindy/binaries/Makefile.am +++ b/Build/source/utils/xindy/binaries/Makefile.am @@ -26,7 +26,7 @@ FAS = base.fas locref.fas idxstyle.fas index.fas version.fas markup.fas DEFAULTS = defaults.xdy DUMP_XINDY = $(SRCDIR)/dump-xindy.lsp MEMFILE = xindy.mem -XINDY_RUN = ./xindy.run -q -M ./base.mem +RUN_XINDY = ./$(XINDY_RUN) -q -norc -M ./base.mem if TETEX_BUILD MODULEDIR = $(prefix)/texmf/xindy @@ -38,13 +38,12 @@ else kerneldir = $(pkglibdir) endif -xindy.mem: $(DEFAULTS) $(FAS) base.mem xindy.run +xindy.mem: $(DEFAULTS) $(FAS) base.mem $(XINDY_RUN) rm -f $(MEMFILE) - $(XINDY_RUN) -x '(load "$(DUMP_XINDY)")' + $(RUN_XINDY) -x '(load "$(DUMP_XINDY)")' gzip $(MEMFILE) mv $(MEMFILE).gz $(MEMFILE) - $(DEFAULTS): @$(RM) $(DEFAULTS) @echo "Creating file $(DEFAULTS)..." @@ -53,17 +52,16 @@ $(DEFAULTS): @echo " (pathname \"$(MODULEDIR)\")))" >> $(DEFAULTS) @echo "Finished $(DEFAULTS)." -%.fas : $(SRCDIR)/%.lsp - $(XINDY_RUN) -c $< -o $@ +%.fas: $(SRCDIR)/%.lsp + $(RUN_XINDY) -c $< -o $@ # *.lib files which should be cleaned FASLIBS = base.lib locref.lib idxstyle.lib index.lib version.lib markup.lib kernel_DATA = xindy.mem -kernel_SCRIPTS = xindy.run - -CLEANFILES = $(FAS) $(FASLIBS) defaults.xdy base.mem \ - $(kernel_DATA) $(kernel_SCRIPTS) +kernel_SCRIPTS = $(XINDY_RUN) +EXTRA_SCRIPTS = xindy.run xindy-lisp.exe +CLEANFILES = $(FAS) $(FASLIBS) defaults.xdy base.mem xindy.mem $(XINDY_RUN) |