summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-04-12 15:14:41 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-04-12 15:14:41 +0200
commit2a91ba5ffc2580e1b80ad8179aaa2001055c6110 (patch)
treecb9ea8af29b2bbe37ad6e815c2c42b43a434eed0
parent0e9c876d4af89655cc0dfa5e2fd2758be39dacc3 (diff)
downloadlualibs-2a91ba5ffc2580e1b80ad8179aaa2001055c6110.tar.gz
add make rules for merging
-rw-r--r--Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6d7673b..4e79621 100644
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,9 @@ MODULES = $(wildcard lualibs-*.lua)
# Files grouped by generation mode
UNPACKED= lualibs.lua
COMPILED = $(DOC_DTX)
-GENERATED = $(UNPACKED) $(DOC_DTX)
+GENERATED = $(UNPACKED) $(DOC_DTX) $(MERGED)
SOURCE = $(DTX) $(MODULES) README Makefile NEWS
+MERGED = lualibs-basic-merged.lua lualibs-extended-merged.lua
# Files grouped by installation location
RUNFILES = $(UNPACKED) $(MODULES)
@@ -18,7 +19,7 @@ SRCFILES = $(DTX) $(SRC_TEX) Makefile
# The following definitions should be equivalent
# ALL_FILES = $(RUNFILES) $(DOCFILES) $(SRCFILES)
-ALL_FILES = $(GENERATED) $(SOURCE)
+ALL_FILES = $(GENERATED) $(SOURCE) $(MERGED)
# Installation locations
FORMAT = luatex
@@ -35,13 +36,15 @@ DO_TEX = tex --interaction=batchmode $< >/dev/null
DO_PDFLATEX = pdflatex --interaction=batchmode $< >/dev/null
DO_PDFLUALATEX = pdflualatex --interaction=batchmode $< >/dev/null
DO_MAKEINDEX = makeindex -s gind.ist $(subst .dtx,,$<) >/dev/null 2>&1
+DO_PACKAGE = mtxrun --script package --merge $< >/dev/null
-all: $(GENERATED) $(DOC_TEX)
+all: $(GENERATED) $(DOC_TEX) $(MERGED)
doc: $(COMPILED)
unpack: $(UNPACKED)
ctan: $(CTAN_ZIP)
tds: $(TDS_ZIP)
world: all ctan
+
.PHONY: all doc unpack ctan tds world
%.pdf: %.dtx
@@ -50,6 +53,9 @@ world: all ctan
$(DO_PDFLATEX)
$(DO_PDFLATEX)
+%-merged.lua: %.lua
+ $(DO_PACKAGE)
+
$(UNPACKED): lualibs.dtx
$(DO_TEX)
@@ -91,3 +97,4 @@ clean:
mrproper: clean
@$(RM) -- $(GENERATED) $(ZIPS)
+merge: $(MERGED)