#
# Copyright (c) 2002 IBM, Inc.
#
#  File:     Makefile
#  Location: <xercesc_root>\src\xercesc\util\MsgLoaders\ICU\resources
#
#  UNIX makefile for compiling (and packaging) the resources
#  for ICU message loader.
#
#  List of resource files to be built.
#
#    . When adding a resource source (.txt) file for a new locale,
#           the corresponding .res file must be added to this list,
#    . AND to the file res-file-list.txt if *dll is to be built
#
#

PKGNAME  = XercesMessages
TARGETS  = $(PKGNAME)_en_US.res
GENRB    = $(ICUROOT)/bin/genrb
GENRBOPT = -s. -d. --package-name $(PKGNAME)

all : $(TARGETS)
	@echo All targets are up to date

clean :
	-rm -f $(TARGETS)

$(PKGNAME)_en_US.res : en_US.txt
	$(GENRB) $(GENRBOPT) $?

#
# Note: $(GENRB) $(GENRBOPT) --encoding cp1251 $?
#
	

















