blob: 5e1e1842d95b6bffd459cb516ed9904de544e4ca (
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
|
# Installation directories
localedir = ${prefix}/usr/share/locale
LANGS = $(shell ls *.po | xargs -i basename {} .po )
PGOAL = drakwizard
GOALS = $(foreach a, $(LANGS), $(a).mo)
all: $(GOALS)
install: all
for l in $(LANGS); do \
install -d $(localedir)/$$l/LC_MESSAGES; \
install -m 644 $$l.mo $(localedir)/$$l/LC_MESSAGES/$(PGOAL).mo; \
done
clean:
rm -f *~ *.[oas] *.mo $(GOALS) TAGS
%.h:
@touch $@
%.mo: %.po
msgfmt -o $@ $<
|