chiark / gitweb /
update localization source files with `make -C locale`
authorHans-Christoph Steiner <hans@eds.org>
Thu, 19 Oct 2017 16:02:00 +0000 (18:02 +0200)
committerHans-Christoph Steiner <hans@eds.org>
Thu, 19 Oct 2017 21:28:13 +0000 (23:28 +0200)
* `make -C locale` updates all the sources
* `make -C locale compile` can compile the binaries, but the preferred way
  is `python3 setup.py compile_catalog`.

locale/Makefile

index 3bbd79e7464b6c899ec14aedd6a3fc437fdb9d9d..3209609314cdea340d06d6e357730c6c11aed475 100644 (file)
@@ -13,16 +13,16 @@ TEMPLATE = fdroidserver.pot
 
 VERSION = $(shell git describe)
 
+# refresh everything from the source code
+update: $(POFILES)
+
 # generate .mo files from the .po files
-all-local: $(MOFILES)
+compile: $(MOFILES)
 
-clean-local:
+clean:
        -rm -f -- $(MOFILES)
        -rm -f -- $(POFILES:=~)
 
-# refresh everything from the source code
-update: $(POFILES)
-
 $(TEMPLATE): $(FILES)
        xgettext --join-existing --from-code=UTF-8 \
                --language=Python --keyword=_ \
@@ -40,4 +40,4 @@ $(TEMPLATE): $(FILES)
        msgfmt --check -o $@ $(@:mo=po)
 
 
-.PHONY = all-local clean-local template
+.PHONY = compile clean update