summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-03-03 12:21:37 +0000
committerng0 <ng0@n0.is>2019-03-03 12:21:37 +0000
commitb35e7cc279c4613baada88f540eceeac15d75692 (patch)
tree22fc0ea4a5a7accd12f0c65055c80447a065284a /Makefile
parentf2703706a944c9669ef8ebd46a7aa8094a04389c (diff)
downloadwww-b35e7cc279c4613baada88f540eceeac15d75692.tar.gz
www-b35e7cc279c4613baada88f540eceeac15d75692.tar.bz2
www-b35e7cc279c4613baada88f540eceeac15d75692.zip
Makefile: Fix by moving rules to the end
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 14 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index dea71710..1600d2c8 100644
--- a/Makefile
+++ b/Makefile
@@ -8,20 +8,6 @@
include config.mk
-.SILENT: show-help
-
-show-help:
- printf "all:\t\t\tBuild the website\n"
- printf "locale/messages.pot:\tExtract translateable strings from jinja2 templates.\n"
- printf "locale-update:\t\tUpdate translation files with new strings.\n"
- printf "locale-compile:\t\tCompile translation files for use.\n"
- printf "locale:\t\t\tProcess everything related to gettext translations.\n"
- printf "template:\t\texpand jinja2 templates to html.\n"
- printf "run:\t\t\tspawn python webserver and open the current directory.\n"
- printf "clean:\t\t\tclean.\n"
- printf "submodules/init:\tinit git submodules\n"
- printf "submodules/update:\tupdate git submodules\n"
-
# All: build HTML pages in all languages and compile the
# TypeScript logic in web-common.
all: locale template
@@ -77,3 +63,17 @@ submodules/init:
submodules/update:
git submodule update --recursive --remote
+
+.SILENT: show-help
+
+show-help:
+ printf "all:\t\t\tBuild the website\n"
+ printf "locale/messages.pot:\tExtract translateable strings from jinja2 templates.\n"
+ printf "locale-update:\t\tUpdate translation files with new strings.\n"
+ printf "locale-compile:\t\tCompile translation files for use.\n"
+ printf "locale:\t\t\tProcess everything related to gettext translations.\n"
+ printf "template:\t\texpand jinja2 templates to html.\n"
+ printf "run:\t\t\tspawn python webserver and open the current directory.\n"
+ printf "clean:\t\t\tclean.\n"
+ printf "submodules/init:\tinit git submodules\n"
+ printf "submodules/update:\tupdate git submodules\n"