aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 2fcf616..adbb9bc 100644
--- a/makefile
+++ b/makefile
@@ -3,7 +3,7 @@
noop =
space = $(noop) $(noop)
comma = ,
-langs = $(patsubst main/locale/%.ini,%,$(wildcard main/locale/*.ini))
+langs = $(patsubst dist-extra/locale/%.ini,%,$(wildcard dist-extra/locale/*.ini))
s_langs = $(subst $(space),$(comma),$(langs))
out = $(shell echo index.{$(s_langs)}.html) index.html
@@ -13,7 +13,7 @@ all: $(out)
clean:
rm -f $(out)
-index.%.html: main/locale/%.ini main/locale/en.ini
+index.%.html: dist-extra/locale/%.ini dist-extra/locale/en.ini
python translate.py $(*)
index.html: index.en.html
cp $< $@