blob: 801a9e20a6e724b5c81657527c3c84147fd0c753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DOMAIN=update-manager
PO_FILES := $(wildcard *.po)
all: update-po
# update the pot
$(DOMAIN).pot:
intltool-update -p -g $(DOMAIN)
# merge the new stuff into the po files
merge-po: $(PO_FILES)
intltool-update -r -g $(DOMAIN);
# create mo from the pos
%.mo : %.po
mkdir -p mo/$(subst .po,,$<)/LC_MESSAGES/
msgfmt $< -o mo/$(subst .po,,$<)/LC_MESSAGES/$(DOMAIN).mo
# dummy target
update-po: $(DOMAIN).pot merge-po $(patsubst %.po,%.mo,$(wildcard *.po))
# update the po files
#for f in $(PO_FILES); do \
# intltool-update -r $${f%.po} -g $(DOMAIN); \
#done
|