summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-02-14 08:15:09 +0100
committerPhilipp Gesang <phg42.2a@gmail.com>2014-02-14 08:15:09 +0100
commit87aace07b0302f7124db092221483b5fce5b7755 (patch)
tree650978aa01ff171e5396a0c90bbc60d8e75d5b2e /Makefile
parent06f156fb85fd63147b1ed51fce1bfe497d088fdc (diff)
downloadluaotfload-87aace07b0302f7124db092221483b5fce5b7755.tar.gz
[build] describe targets in Makefile (new top target: show)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1fbc378..26de3bc 100644
--- a/Makefile
+++ b/Makefile
@@ -77,6 +77,8 @@ DO_GLYPHS = $(LUA) $(GLYPHSCRIPT) > /dev/null
DO_CHARS = $(LUA) $(CHARSCRIPT) > /dev/null
DO_STATUS = $(LUA) $(STATUSSCRIPT) > /dev/null
+show: showtargets
+
all: $(GENERATED)
builddir: $(BUILDDIR)
resources: $(RESOURCES)
@@ -170,4 +172,24 @@ mrproper: clean
@$(RM) -- $(GENERATED) $(ZIPS) $(GLYPHSOURCE)
@$(RM) -r -- $(BUILDDIR)
+###############################################################################
+showtargets:
+ @echo "Available targets:"
+ @echo
+ @echo " all build everything: documentation, resources,"
+ @echo " world build everything and package zipballs"
+ @echo " doc compile PDF documentation"
+ @echo " resources generate resource files (chars, glyphs)"
+ @echo
+ @echo " pdf build luaotfload.pdf"
+ @echo " manual crate manpage for luaotfload-tool (requires Docutils)"
+ @echo " graph generate file graph (requires GraphViz)"
+ @echo
+ @echo " chars import char-def.lua as luaotfload-characters.lua"
+ @echo " status create repository info (luaotfload-status.lua)"
+ @echo
+ @echo " tds package a zipball according to the TDS"
+ @echo " ctan package a zipball for uploading to CTAN"
+ @echo
+
# vim:noexpandtab:tabstop=8:shiftwidth=2