summaryrefslogtreecommitdiff
path: root/po/makefile.mingw
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2000-07-25 17:12:23 +0000
committerTor Lillqvist <tml@src.gnome.org>2000-07-25 17:12:23 +0000
commit1623b0fcfe3a004ac948ae5925fb3ac8465403a5 (patch)
tree1907c52040af43792265b01ca0f0997aa5be0403 /po/makefile.mingw
parent838e2f341bd8c8ffe2dc8b91b16a98e8790cbe33 (diff)
downloadgdk-pixbuf-1623b0fcfe3a004ac948ae5925fb3ac8465403a5.tar.gz
makefile.cygwin Renamed. Use iconv, not native2ascii.
2000-07-25 Tor Lillqvist <tml@iki.fi> * makefile.cygwin * makefile.mingw: Renamed. Use iconv, not native2ascii.
Diffstat (limited to 'po/makefile.mingw')
-rw-r--r--po/makefile.mingw152
1 files changed, 152 insertions, 0 deletions
diff --git a/po/makefile.mingw b/po/makefile.mingw
new file mode 100644
index 000000000..a93d07a23
--- /dev/null
+++ b/po/makefile.mingw
@@ -0,0 +1,152 @@
+## Makefile for compiling UTF-8 message catalogs on Win32 with cygwin
+##
+## Use: make -f makefile.cygwin install
+##
+## To convert the clear-text message catalogs to binary form (.gmo)
+## files in the UTF-8 encoding of Unicode that we want,
+## you will need: - iconv, from the tests directory in libiconv
+## - msgfmt, from GNU gettext
+
+# This file is included from other po directories, too.
+# They should define their own PACKAGE and possibly LOCALEDIR macros
+
+ifndef PACKAGE
+PACKAGE = gtk+
+endif
+ifndef INSTALLSUBDIR
+INSTALLSUBDIR = $(PACKAGE)
+endif
+ifndef LOCALEDIR
+# This is what I use as installation target, from where the installer-builder
+# will pick it up. The user installation location will be asked by
+# the installer (typically %WinDir%\gtk+).
+LOCALEDIR = /install/$(INSTALLSUBDIR)/locale
+endif
+
+LANGUAGES = $(subst .po,,$(wildcard *.po))
+LANGUAGES := $(subst .GB2312,,$(LANGUAGES))
+LANGUAGES := $(subst .Big5,,$(LANGUAGES))
+
+################################################################
+
+all : $(addsuffix .gmo,$(LANGUAGES))
+
+install : all
+ mkdir -p $(addsuffix /LC_MESSAGES,$(addprefix $(LOCALEDIR)/,$(LANGUAGES)))
+ for l in $(LANGUAGES); do cp $$l.gmo $(LOCALEDIR)/$$l/LC_MESSAGES/$(PACKAGE).mo; done
+
+.SUFFIXES: .po .utf8 .gmo
+
+.utf8.gmo:
+ msgfmt -o $@ $<
+
+ca.utf8: ca.po
+ iconv -f ISO-8859-1 -t UTF-8 ca.po >$@
+
+cs.utf8: cs.po
+ iconv -f ISO-8859-2 -t UTF-8 cs.po >$@
+
+da.utf8: da.po
+ iconv -f ISO-8859-1 -t UTF-8 da.po >$@
+
+de.utf8: de.po
+ iconv -f ISO-8859-1 -t UTF-8 de.po >$@
+
+el.utf8: el.po
+ iconv -f ISO-8859-7 -t UTF-8 el.po >$@
+
+en_GB.utf8: en_GB.po
+ iconv -f ISO-8859-1 -t UTF-8 en_GB.po >$@
+
+es.utf8: es.po
+ iconv -f ISO-8859-1 -t UTF-8 es.po >$@
+
+et.utf8: et.po
+ iconv -f ISO-8859-1 -t UTF-8 et.po >$@
+
+eu.utf8: eu.po
+ iconv -f ISO-8859-1 -t UTF-8 eu.po >$@
+
+fi.utf8: fi.po
+ iconv -f ISO-8859-1 -t UTF-8 fi.po >$@
+
+fr.utf8: fr.po
+ iconv -f ISO-8859-1 -t UTF-8 fr.po >$@
+
+ga.utf8: ga.po
+ iconv -f ISO-8859-1 -t UTF-8 ga.po >$@
+
+gl.utf8: gl.po
+ iconv -f ISO-8859-1 -t UTF-8 gl.po >$@
+
+hr.utf8: hr.po
+ iconv -f ISO-8859-2 -t UTF-8 hr.po >$@
+
+hu.utf8: hu.po
+ iconv -f ISO-8859-2 -t UTF-8 hu.po >$@
+
+it.utf8: it.po
+ iconv -f ISO-8859-1 -t UTF-8 it.po >$@
+
+ja.utf8: ja.po
+ iconv -f EUC-JP -t UTF-8 ja.po >$@
+
+ko.utf8: ko.po
+ iconv -f EUC-KR -t UTF-8 ko.po >$@
+
+lt.utf8: lt.po
+ iconv -f ISO-8859-13 -t UTF-8 lt.po >$@
+
+nl.utf8: nl.po
+ iconv -f ISO-8859-1 -t UTF-8 nl.po >$@
+
+no.utf8: no.po
+ iconv -f ISO-8859-1 -t UTF-8 no.po >$@
+
+pl.utf8: pl.po
+ iconv -f ISO-8859-2 -t UTF-8 pl.po >$@
+
+pt.utf8: pt.po
+ iconv -f ISO-8859-1 -t UTF-8 pt.po >$@
+
+pt_BR.utf8: pt_BR.po
+ iconv -f ISO-8859-1 -t UTF-8 pt_BR.po >$@
+
+ro.utf8: ru.po
+ iconv -f ISO-8859-2 -t UTF-8 ro.po >$@
+
+ru.utf8: ru.po
+ iconv -f KOI8-R -t UTF-8 ru.po >$@
+
+sk.utf8: sk.po
+ iconv -f ISO-8859-2 -t UTF-8 sk.po >$@
+
+sl.utf8: sl.po
+ iconv -f ISO-8859-2 -t UTF-8 sl.po >$@
+
+sv.utf8: sv.po
+ iconv -f ISO-8859-1 -t UTF-8 sv.po >$@
+
+uk.utf8: uk.po
+ iconv -f KOI8-U -t UTF-8 uk.po >$@
+
+tr.utf8: tr.po
+ iconv -f ISO-8859-9 -t UTF-8 tr.po >$@
+
+wa.utf8: wa.po
+ iconv -f ISO-8859-1 -t UTF-8 wa.po >$@
+
+zh_CN.gmo: zh_CN.utf8
+ msgfmt -o $@ $<
+
+zh_CN.utf8: zh_CN.GB2312.po
+ iconv -f GB2312 -t UTF-8 zh_CN.GB2312.po >$@
+
+zh_TW.gmo: zh_TW.utf8
+ msgfmt -o $@ $<
+
+zh_TW.utf8: zh_TW.Big5.po
+ iconv -f BIG5 -t UTF-8 zh_TW.Big5.po >$@
+
+clean:
+ -rm *.utf8 *.gmo