ICU-1220 define the path separator outside of resfiles.mk

X-SVN-Rev: 8237
This commit is contained in:
Yves Arrouye 2002-03-26 01:37:01 +00:00
parent 2b306f08e1
commit ff59d942ec
3 changed files with 9 additions and 4 deletions

View File

@ -25,6 +25,7 @@ MSGNAME=uconvmsg
include @platform_make_fragment@
# RESSRC comes from resfiles.mk
FILESEPCHAR=/
include $(srcdir)/resfiles.mk
RESDIR=$(MSGNAME)

View File

@ -69,8 +69,9 @@ PATH = $(PATH);$(ICUP)\bin
# Suffixes for data files
.SUFFIXES : .ucm .cnv .dll .dat .res .txt .c
# We're including a list of ucm files. There are two lists, one is essential 'ucmfiles.mk' and
# the other is optional 'ucmlocal.mk'
# We're including a list of resource files.
FILESEPCHAR=\
!IF EXISTS("$(RESFILES)")
!INCLUDE "$(RESFILES)"
!ELSE

View File

@ -1,6 +1,9 @@
# Copyright (c) 2000 IBM, Inc. and Others.
# Copyright (c) 2000-2002 IBM, Inc. and Others.
# A small makefile containing the list of resource bundles
# to include in uconv.
# The variable FILESEPCHAR is defined by the caller to be
# the character separating components of a filename.
RESOURCESDIR = resources
RESSRC = $(RESOURCESDIR)/root.txt $(RESOURCESDIR)/fr.txt
RESSRC = $(RESOURCESDIR)$(FILESEPCHAR)root.txt $(RESOURCESDIR)$(FILESEPCHAR)fr.txt