summaryrefslogtreecommitdiff
path: root/scripts/newbitmaps/strings/localized_text/Makefile
blob: 19f283dd0e4c248fa6b784771119541399809540 (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
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

NORMAL=bg ca cs da de el en en_GB es es_419 et fi fil fr hi hr hu \
	id it ja ko lt lv nl no pl pt_BR pt_PT ro ru sk sl sr sv th tr \
	uk vi zh_CN zh_TW

SPECIAL=ar fa iw

RTL=--rtl
TNR=--font='Times New Roman'

default: $(foreach DIR,$(NORMAL),$(DIR)-dodir) $(SPECIAL)

%-dodir:
	@../text_to_bmp $(subst -dodir,,$@)/*

ar:
	@../text_to_bmp $(RTL) $(TNR) $@/*

fa:
	@../text_to_bmp $(RTL) $(TNR) $@/*

iw:
	@../text_to_bmp $(RTL) $@/*


.PHONY: $(SPECIAL)