#
# Makefile for zh-localedata
# zh-localedata is free software; you can use it, redistribute it 
# and/or modify it under the terms of GNU General Public License.
#
LOCALES=zh_TW.Big5 zh_CN.GB2312
DESTDIR=/var/tmp

install:
	for i in $(LOCALES); do $(MAKE) -C $$i install DESTDIR=$(DESTDIR); done

clean:
	-for i in $(LOCALES) TOOLS test; do $(MAKE) -C $$i clean; done
	find . -name \*~ -exec rm -f {} \;
