blob: b120b471cd55f919750ae7395236ff536f40d624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
POFILES = $(wildcard *.po)
TEXTS = $(addsuffix .tr,$(basename $(wildcard *.po)))
PRODUCT = $(shell perl -ne 'print if s/^product=//' ../config)
all: .ready
.ready: text.inc $(TEXTS)
@touch .ready
%.tr: %.po text.inc
bin/po2txt --product='$(PRODUCT)' $< >$@
# en.tr uses msgids from bootloader.pot
en.tr text.inc: bootloader.pot
bin/po2txt --product='$(PRODUCT)' $< >en.tr
clean:
rm -f .ready text.inc *.tr *~ talk/*~
|