diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-05-10 17:23:06 +0300 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-05-10 17:23:06 +0300 |
commit | 7002dfe5556f503320d9bee480e5fb43bdb6e7a3 (patch) | |
tree | 384ee73556657b6818c78b006cfa625776c980cd /Makefile | |
parent | 20864d5fdb81f248500f2e94c95b3b15569cc277 (diff) | |
download | lualibs-7002dfe5556f503320d9bee480e5fb43bdb6e7a3.tar.gz |
Rename to lualibs
Rename luaextra->lualibs when sensible, also use luatexbase instead of
luatextra.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,19 +1,19 @@ -# Makefile for luaextra. +# Makefile for lualibs. -NAME = luaextra +NAME = lualibs DTX = $(wildcard *.dtx) DOC_DTX = $(patsubst %.dtx, %.pdf, $(DTX)) -EXTRA = $(wildcard luaextra-*.lua) +MODULES = $(wildcard lualibs-*.lua) # Files grouped by generation mode -UNPACKED= luaextra.lua +UNPACKED= lualibs.lua COMPILED = $(DOC_DTX) GENERATED = $(UNPACKED) $(DOC_DTX) -SOURCE = $(DTX) $(EXTRA) README Makefile News +SOURCE = $(DTX) $(MODULES) README Makefile NEWS # Files grouped by installation location -RUNFILES = $(UNPACKED) $(EXTRA) -DOCFILES = $(DOC_DTX) README News +RUNFILES = $(UNPACKED) $(MODULES) +DOCFILES = $(DOC_DTX) README NEWS SRCFILES = $(DTX) $(SRC_TEX) Makefile # The following definitions should be equivalent @@ -50,7 +50,7 @@ world: all ctan $(DO_PDFLATEX) $(DO_PDFLATEX) -$(UNPACKED): luaextra.dtx +$(UNPACKED): lualibs.dtx $(DO_TEX) $(CTAN_ZIP): $(SOURCE) $(COMPILED) $(TDS_ZIP) |