diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 $< $@ |