You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2002/10/22 16:56:54 UTC

cvs commit: xml-xerces/c/src/xercesc/util/MsgLoaders/ICU/resources resources.mak

peiyongz    2002/10/22 07:56:54

  Added:       c/src/xercesc/util/MsgLoaders/ICU/resources resources.mak
  Log:
  windows makefile to build resource bundle for ICUMsgLoader
  
  Revision  Changes    Path
  1.1                  xml-xerces/c/src/xercesc/util/MsgLoaders/ICU/resources/resources.mak
  
  Index: resources.mak
  ===================================================================
  #
  # Copyright (c) 2002 IBM, Inc. 
  #
  #  File:     resources.mak
  #  Location: <xercesc_root>\src\xercesc\util\MsgLoaders\ICU\resources
  #
  #  Windows nmake 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  = XercescErrMsg
  TARGETS  = $(PKGNAME)_root.res $(PKGNAME)_en.res  $(PKGNAME)_fr.res
  ICUDIR   = ..\..\..\..\..\..\..\icu
  GENRB    = $(ICUDIR)\bin\genrb.exe
  GENRBOPT = -s. -d. --package-name $(PKGNAME)  
  
  all : $(TARGETS)
  	@echo All targets are up to date
  
  clean : 
  	-erase $(TARGETS)
  
  $(PKGNAME)_root.res : root.txt
  	$(GENRB) $(GENRBOPT) $?
      
  $(PKGNAME)_en.res : en.txt
  	$(GENRB) $(GENRBOPT) $?
  
  #
  # Note: $(GENRB) $(GENRBOPT) --encoding cp1251 $?
  #
  $(PKGNAME)_fr.res : fr.txt
  	$(GENRB) $(GENRBOPT) $?
      
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org