aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 617d5265..1faf391a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,12 @@
3# All: build HTML pages in all languages and compile the 3# All: build HTML pages in all languages and compile the
4# TypeScript logic in web-common. 4# TypeScript logic in web-common.
5 5
6# Hardly anyone seems to read README files anymore, so keep this note here:
7# Don't remove the variables for python etc. They exist
8# because one system sticks with PEPs, and others opt
9# for installing every version side-by-side,
10# Same goes for babel.
11
6include config.mk 12include config.mk
7 13
8all: locale template 14all: locale template
@@ -54,6 +60,6 @@ docker-all:
54 docker build -t gnunet-www-builder . 60 docker build -t gnunet-www-builder .
55 # Importing via the shell like this is hacky, 61 # Importing via the shell like this is hacky,
56 # but after trying lots of other ways, this works most reliably... 62 # but after trying lots of other ways, this works most reliably...
57 python3 -c 'import i18nfix' 63 $(PYTHON) -c 'import i18nfix'
58 docker run --rm -v $$(pwd):/tmp/ --user $$(id -u):$$(id -g) gnunet-www-builder 64 docker run --rm -v $$(pwd):/tmp/ --user $$(id -u):$$(id -g) gnunet-www-builder
59 65