summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-06-11 12:43:20 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-06-11 12:43:20 +0200
commit26c8a7cbd76d210f6db69f55f826dee2aab96ab8 (patch)
treeaac3fd53fff9f218e36d0efade3b600035d877e2
parent925e23c5673105bc1a26ff47a81dac23aefd9c92 (diff)
downloadauditor-26c8a7cbd76d210f6db69f55f826dee2aab96ab8.tar.gz
auditor-26c8a7cbd76d210f6db69f55f826dee2aab96ab8.tar.bz2
auditor-26c8a7cbd76d210f6db69f55f826dee2aab96ab8.zip
Move non-all target below.
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 18ab52c..717eef7 100644
--- a/Makefile
+++ b/Makefile
@@ -8,16 +8,16 @@
include config.mk
-requirements:
- pip3 install -r requirements.txt
-
# All: build HTML pages in all languages and compile the
# TypeScript logic in web-common.
all: locale template
# cd web-common && $(TSC)
+requirements:
+ pip3 install -r requirements.txt
+
# Extract translateable strings from jinja2 templates.
-locale/messages.pot: *.j2 # common/*.j2 common/*.j2.inc
+locale/messages.pot: requirements *.j2 # common/*.j2 common/*.j2.inc
env PYTHONPATH="." $(BABEL) extract -F locale/babel.map -o locale/messages.pot .
# Update translation (.po) files with new strings.