summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2015-07-21 07:39:52 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2015-07-21 07:43:09 +0200
commitc4ed163680db9a566b29f5f1d8b98a928f8055a0 (patch)
treeb3ce885464c59a4afd8238a7fe70a7a69ae9d6fb /Makefile
parenta42d7ef08ecacaef8e0429d80979c9943fd5d83e (diff)
downloadluaotfload-c4ed163680db9a566b29f5f1d8b98a928f8055a0.tar.gz
[status] allow passing additional files on command line
During a build process, the name of a freshly created fontloader package will be passed to ``mkstatus`` so it’ll be considered in the status file.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 21909e5..f81f544 100644
--- a/Makefile
+++ b/Makefile
@@ -90,9 +90,10 @@ LUA = texlua
## variables.
DO_GLYPHS = $(LUA) $(GLYPHSCRIPT) > /dev/null
DO_CHARS = $(LUA) $(CHARSCRIPT) > /dev/null
-DO_STATUS = $(LUA) $(STATUSSCRIPT) > /dev/null
-DO_IMPORT = $(LUA) $(IMPORTSCRIPT) import
-DO_PACKAGE = $(LUA) $(IMPORTSCRIPT) package $(PACKAGEDIR)/luaotfload-package.lua $(LOADER)
+DO_STATUS = $(LUA) $(STATUSSCRIPT) $(LOADER) >/dev/null
+DO_IMPORT = $(LUA) $(IMPORTSCRIPT) import >/dev/null
+DO_PACKAGE = $(LUA) $(IMPORTSCRIPT) package \
+ $(PACKAGEDIR)/luaotfload-package.lua $(LOADER) >/dev/null
define check-lua-files
@echo validating syntax
@@ -143,7 +144,7 @@ $(GLYPHS): builddir
$(CHARS): builddir
$(DO_CHARS)
-$(STATUS): builddir
+$(STATUS): builddir loader
$(DO_STATUS)
$(LOADER): builddir