cf2af20035
X-SVN-Rev: 7495
43 lines
1.7 KiB
Makefile
43 lines
1.7 KiB
Makefile
#**********************************************************************
|
|
#* Copyright (C) 1999-2000, International Business Machines Corporation
|
|
#* and others. All Rights Reserved.
|
|
#**********************************************************************
|
|
# nmake file for creating data files on win32
|
|
# invoke with
|
|
# nmake /f makedata.mak icup=<path_to_icu_instalation> [Debug|Release]
|
|
#
|
|
# 03/19/2001 weiv, schererm Created
|
|
|
|
.SUFFIXES : .res .txt
|
|
|
|
|
|
ALL : "$(TESTDATAOUT)\testdata.dat"
|
|
@echo Test data is built.
|
|
|
|
"$(TESTDATAOUT)\testdata.dat" : "$(TESTDATABLD)\ja_data.res" "$(TESTDATABLD)\root.res" "$(TESTDATABLD)\te.res" "$(TESTDATABLD)\te_IN.res" "$(TESTDATABLD)\testtypes.res" "$(TESTDATABLD)\testempty.res" "$(TESTDATABLD)\ja_data.res" $(TESTDATAOUT)test.dat
|
|
@echo Building test data
|
|
copy "$(TESTDATABLD)\te.res" "$(TESTDATAOUT)\testudata_nam.typ"
|
|
@"$(ICUTOOLS)\pkgdata\$(CFG)\pkgdata" -v -m common -c -p testdata -O "$(PKGOPT)" -d "$(TESTDATAOUT)" -T "$(TESTDATABLD)" -s "$(TESTDATABLD)" <<
|
|
root.res
|
|
te.res
|
|
te_IN.res
|
|
testtypes.res
|
|
testempty.res
|
|
ja_data.res
|
|
test.dat
|
|
<<
|
|
|
|
|
|
# Inference rule for creating resource bundles
|
|
# Some test data resource bundles are known to have warnings and bad data.
|
|
# The -q option is there on purpose, so we don't see it normally.
|
|
{$(TESTDATA)}.txt.res::
|
|
@echo Making Test Resource Bundle files
|
|
@"$(ICUTOOLS)\genrb\$(CFG)\genrb" -q -s"$(TESTDATA)" -d"$(TESTDATABLD)" $<
|
|
|
|
"$(TESTDATABLD)\ja_data.res":
|
|
@echo Making Test Resource Bundle file with encoding ISO-2022-JP
|
|
@"$(ICUTOOLS)\genrb\$(CFG)\genrb" -q -s"$(TESTDATA)" -eISO_2022_JP -d"$(TESTDATABLD)" ja_data.bin
|
|
|
|
$(TESTDATAOUT)test.dat : {"$(ICUTOOLS)\gentest\$(CFG)"}gentest.exe
|
|
"$(ICUTOOLS)\gentest\$(CFG)\gentest" -d"$(TESTDATABLD)"
|