summaryrefslogtreecommitdiffstats
path: root/po/Makefile
blob: 573f7d99b091761da6748d5b9ee5f21924f8136f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Installation directories
localedir = ${prefix}/share/locale

PGOAL = drakwizard

# *.wiz files
WIZFILES = $(shell find .. -type f -name "*.wiz")
# perl files with translatable strings
PL_FILES = ../drakwizard.pl

WIZCFILES = $(WIZFILES:%=%_.c)
PL_CFILES = $(PL_FILES:%=%_.c)

POFILES = $(shell ls *.po)
MOFILES = $(POFILES:%.po=%.mo)
LANGS = $(POFILES:%.po=%)

all: $(PGOAL).pot $(MOFILES)

$(WIZCFILES): %_.c: %
	../wiz2fake_c.pl $< > $@

$(PL_CFILES): %_.c: %
	./fake_c.pl $< > $@

%.mo: %.po
	msgfmt -o $@ $<

merge: $(PGOAL).pot
	@for n in $(POFILES); do \
		echo "Merging $$n"; \
		msgmerge "$$n" $< > "$$n"t; \
		mv -f "$$n"t "$$n"; \
	done

$(PGOAL).pot: $(PL_CFILES) $(WIZCFILES)
	xgettext -F -n --add-comments='-PO' \
	--keyword=_ --keyword=__ --keyword=N_ \
	--language=C -o $@ $(PL_CFILES) $(WIZCFILES)
	echo -e "\\nmsgid \"Cancel\"\\nmsgstr \"\"" >> drakwizard.pot
	echo -e "\\nmsgid \"Next ->\"\\nmsgstr \"\"" >> drakwizard.pot
	echo -e "\\nmsgid \"<- Previous\"\\nmsgstr \"\"" >> drakwizard.pot
	echo -e "\\nmsgid \"enabled\"\\nmsgstr \"\"\\n\nmsgid \"disabled\"\\nmsgstr \"\"\\n" >> drakwizard.pot
	@rm -rf $(PL_CFILES) $(WIZCFILES)

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 -rf *.mo $(POFILES:%=%t) $(PL_CFILES) $(WIZCFILES) $(PGOAL).pot