summaryrefslogtreecommitdiff
path: root/macros/luatex/latex/luainputenc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'macros/luatex/latex/luainputenc/Makefile')
-rw-r--r--macros/luatex/latex/luainputenc/Makefile94
1 files changed, 94 insertions, 0 deletions
diff --git a/macros/luatex/latex/luainputenc/Makefile b/macros/luatex/latex/luainputenc/Makefile
new file mode 100644
index 0000000000..1ad5023e36
--- /dev/null
+++ b/macros/luatex/latex/luainputenc/Makefile
@@ -0,0 +1,94 @@
+# Makefile for luainputenc.
+
+NAME = luainputenc
+DOC = $(NAME).pdf
+DTX = $(NAME).dtx
+
+# Files grouped by generation mode
+COMPILED = $(DOC)
+UNPACKED = lutf8.def lutf8x.def inputenc.sty.diff \
+ luainputenc.sty luainputenc.lua
+SOURCE = $(DTX) README Makefile NEWS
+GENERATED = $(COMPILED) $(UNPACKED)
+
+# Files grouped by installation location
+UNPACKED_DOC = inputenc.sty.diff
+RUNFILES = $(filter-out $(UNPACKED_DOC) test.tex, $(UNPACKED))
+DOCFILES = $(DOC) $(UNPACKED_DOC) test.tex README NEWS
+SRCFILES = $(DTX) Makefile
+
+# The following definitions should be equivalent
+# ALL_FILES = $(RUNFILES) $(DOCFILES) $(SRCFILES)
+ALL_FILES = $(GENERATED) $(SOURCE)
+
+# Installation locations
+FORMAT = lualatex
+RUNDIR = $(TEXMFROOT)/tex/$(FORMAT)/$(NAME)
+DOCDIR = $(TEXMFROOT)/doc/$(FORMAT)/$(NAME)
+SRCDIR = $(TEXMFROOT)/source/$(FORMAT)/$(NAME)
+TEXMFROOT = ./texmf
+
+CTAN_ZIP = $(NAME).zip
+TDS_ZIP = $(NAME).tds.zip
+ZIPS = $(CTAN_ZIP) $(TDS_ZIP)
+
+DO_TEX = tex --interaction=batchmode $< >/dev/null
+DO_LATEXMK = latexmk -pdf -silent $< >/dev/null
+
+all: $(GENERATED)
+doc: $(COMPILED)
+unpack: $(UNPACKED)
+ctan: check $(CTAN_ZIP)
+tds: $(TDS_ZIP)
+world: all ctan
+.PHONY: all doc unpack ctan tds world check
+
+%.pdf: %.dtx
+ $(DO_LATEXMK)
+
+$(UNPACKED): $(DTX)
+ $(DO_TEX)
+
+check: $(UNPACKED)
+ lualatex --interaction=batchmode test.tex >/dev/null
+
+$(CTAN_ZIP): $(SOURCE) $(COMPILED) $(TDS_ZIP)
+ @echo "Making $@ for CTAN upload."
+ @$(RM) -- $@
+ @zip -9 $@ $^ >/dev/null
+
+define run-install
+@mkdir -p $(RUNDIR) && cp $(RUNFILES) $(RUNDIR)
+@mkdir -p $(DOCDIR) && cp $(DOCFILES) $(DOCDIR)
+@mkdir -p $(SRCDIR) && cp $(SRCFILES) $(SRCDIR)
+endef
+
+$(TDS_ZIP): TEXMFROOT=./tmp-texmf
+$(TDS_ZIP): $(ALL_FILES)
+ @echo "Making TDS-ready archive $@."
+ @$(RM) -- $@
+ $(run-install)
+ @cd $(TEXMFROOT) && zip -9 ../$@ -r . >/dev/null
+ @$(RM) -r -- $(TEXMFROOT)
+
+.PHONY: install manifest clean mrproper
+
+install: $(ALL_FILES)
+ @echo "Installing in '$(TEXMFROOT)'."
+ $(run-install)
+
+manifest:
+ @echo "Source files:"
+ @for f in $(SOURCE); do echo $$f; done
+ @echo ""
+ @echo "Derived files:"
+ @for f in $(GENERATED); do echo $$f; done
+
+clean:
+ @latexmk -silent -c *.dtx >/dev/null
+ @# for tex-only runs:
+ @$(RM) -- *.log
+
+mrproper: clean
+ @$(RM) -- $(GENERATED) $(ZIPS) test.*
+