Taking the plunge to Ant build system

X-SVN-Rev: 936
This commit is contained in:
John Fitzpatrick 2000-03-10 01:33:53 +00:00
parent d90408948d
commit fdf872dd09
68 changed files with 94 additions and 1436 deletions

3
icu4j/build.bat Executable file
View file

@ -0,0 +1,3 @@
@echo off
REM convience bat file to build with
java -classpath "build\javac.jar;build\ant.jar;build\projectx-tr2.jar;%CLASSPATH%" org.apache.tools.ant.Main %1 %2 %3 %4 %5

14
icu4j/build.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh
ADDL_CLASSPATH=build/ant.jar:build/projectx-tr2.jar:build/javac.jar
if [ "$CLASSPATH" != "" ] ; then
CLASSPATH=$CLASSPATH:$ADDL_CLASSPATH
else
CLASSPATH=$ADDL_CLASSPATH
fi
export CLASSPATH
echo Building with classpath $CLASSPATH
java org.apache.tools.ant.Main $*

77
icu4j/build.xml Normal file
View file

@ -0,0 +1,77 @@
<!-- Ant own build file -->
<project name="ICU4J" default="core" basedir=".">
<property name="src.dir" value="src"/>
<property name="doc.dir" value="doc"/>
<property name="build.dir" value="classes"/>
<property name="classpath" value="${build.dir}"/>
<property name="build.compiler" value="classic"/>
<target name="all" depends="core,tests,tools,demos,jar,docs"/>
<target name="core">
<mkdir dir="${build.dir}"/>
<copyfile src="${src.dir}/com/ibm/text/resources/thai_dict"
dest="${build.dir}/com/ibm/text/resources/thai_dict"/>
<compile srcfiles="com/ibm/util,com/ibm/text"
srcdir="${src.dir}"
destdir="${build.dir}"
classpath="${classpath}"
debug="on" deprecation="off" target="1.2"/>
</target>
<target name="tests" depends="core">
<mkdir dir="${build.dir}"/>
<compile srcfiles="com/ibm/test"
srcdir="${src.dir}"
destdir="${build.dir}"
classpath="${classpath}"
debug="on" deprecation="off" target="1.2"/>
</target>
<target name="demos" depends="core">
<mkdir dir="${build.dir}"/>
<compile srcfiles="com/ibm/demo"
srcdir="${src.dir}"
destdir="${build.dir}"
classpath="${classpath}"
debug="on" deprecation="off" target="1.2"/>
</target>
<target name="tools" depends="core">
<mkdir dir="${build.dir}"/>
<compile srcfiles="com/ibm/tools"
srcdir="${src.dir}"
destdir="${build.dir}"
classpath="${classpath}"
debug="on" deprecation="off" target="1.2"/>
</target>
<target name="docs" depends="core,tests,tools">
<mkdir dir="${doc.dir}"/>
<docs sourcepath="${src.dir}"
destdir="${doc.dir}"
nodeprecatedlist="true"
windowtitle="ICU4J"
doctitle="ICU4J"
encoding="iso-8859-1"
docencoding="iso-8859-1"
bottom="&quot;&lt;font size=-1>Copyright (c); 1998-2000 IBM Corporation.&lt;/font>&quot;"
sourcefiles="src/com/ibm/text/*.java src/com/ibm/util/*.java"
/>
</target>
<target name="jar" depends="core">
<jar jarfile="ICU4J.jar" basedir="${build.dir}" items="com"/>
</target>
<target name="clean">
<deltree dir="${build.dir}"/>
<deltree dir="${doc.dir}"/>
<deltree dir="ICU4J.jar"/>
</target>
</project>

View file

@ -1,51 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.4 $ $Date: 2000/03/09 18:38:20 $
#
TOPDIR=..
PACKAGE=
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= com
default: classes
DOCDIR= $(TOPDIR)/docs
DOCINDEX= $(DOCDIR)/index.html
javadoc: FORCE
rm -rf $(DOCDIR)
mkdir $(DOCDIR)
javadoc -d $(DOCDIR) \
-nodeprecatedlist \
-windowTitle "ICU4J" \
-docTitle "ICU4J" \
-encoding "iso-8859-1" \
-docencoding "iso-8859-1" \
-bottom "<font size=-1>Copyright &copy; 1998-2000 IBM Corporation.</font>" \
$(TOPDIR)/src/com/ibm/text/*.java $(TOPDIR)/src/com/ibm/util/*.java
tools: classes toolsinternal
tests: classes testsinternal
demos: classes demosinternal
toolsinternal: FORCE
cd com/ibm/tools ; $(MAKE) classes ; cd ../../..
testsinternal: FORCE
cd com/ibm/test ; $(MAKE) classes ; cd ../../..
demosinternal: FORCE
cd com/ibm/demo ; $(MAKE) classes ; cd ../../..
complete: classes testsinternal toolsinternal demosinternal javadoc
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,22 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
ifndef ENABLE_IMPLICITS
%: %.o
%: %.C
%: %.c
%: %.p
%: %.f
%: %.s
%: %.cc
%: %.cpp
%: %.mod
%: %.sh
%: %.F
%: %.r
%: %.S
endif
ifndef ENABLE_RCS
%:: %,v
%:: RCS/%,v
endif

View file

@ -1,16 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
CLASSDIR= $(TOPDIR)/classes
SRCDIR= $(TOPDIR)/src
DOCDIR= $(TOPDIR)/docs
CLASSPATH= $(CLASSDIR)
PKGPATH= $(subst .,/,$(PACKAGE))
TARGDIR= $(CLASSDIR)/$(PKGPATH)
#JAVACFLAGS= -target 1.1
JAVACFLAGS=
JAVAC= javac -classpath $(CLASSPATH) -sourcepath $(SRCDIR) -d $(CLASSDIR) $(JAVACFLAGS)
MAKE= gmake

View file

@ -1,12 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
CLASSDIR= $(TOPDIR)/classes
SRCDIR= $(TOPDIR)/src
DOCDIR= $(TOPDIR)/docs
CLASSPATH= $(CLASSDIR)
PKGPATH= $(PACKAGE:.=\)
TARGDIR= $(CLASSDIR)/$(PKGPATH)
JAVACFLAGS= -target 1.1
MAKE= nmake -nologo

View file

@ -1,71 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
default: classes
include $(TOPDIR)/src/build/CancelImplicits.gmk
#JAVAC= javac -classpath $(CLASSPATH) -sourcepath $(SRCDIR) -d $(CLASSDIR) $(JAVACFLAGS)
#MAKE= gmake -f makefile.gmk
.SUFFIXES: .java .class
ifdef FILES_JAVA
FILES_java= $(FILES_java:/=\)
endif
FILES_class= $(FILES_java:.java=.class)
CLASSLIST= classes.list
CLASS_DEST_DIR= $(CLASSDIR)/$(PKGPATH)
$(CLASS_DEST_DIR) :
@mkdir -p $@
$(FILES_class) : $(CLASS_DEST_DIR)%.class: $(SRCDIR)/$(PKGPATH)%.java
@echo $? >> .classes.list
.compile.classlist: $(FILES_class)
@if [ -s .classes.list ] ; then echo Compiling { ; fi
@if [ -s .classes.list ] ; then echo $(FILES_java) ; fi
@if [ -s .classes.list ] ; then $(JAVAC) $(shell if [ -s .classes.list ] ; then cat .classes.list; fi) ; fi
@if [ -s .classes.list ] ; then echo } ; fi
@rm -f .classes.list
ifdef FILES_dict
SRC_FILES_dict= $(subst classes,src,$(FILES_dict))
endif
classes: $(CLASS_DEST_DIR) delete.classlist $(FILES_class) $(FILES_dics) .compile.classlist
ifdef FILES_dict
# @cp $(SRC_FILES_dict) $(CLASS_DEST_DIR)/$(notdir $(SRC_FILES_dict))
cp $(SRC_FILES_dict) $(CLASSDIR)/com/ibm/text/resources/$(notdir $(SRC_FILES_dict))
endif
ifdef SUBDIRS
@for D in $(SUBDIRS) ; do cd $$D ; $(MAKE) classes ; cd .. ; done
endif
dict: $(SRC_FILES_dict) $(CLASS_DEST_DIR)
@echo $(FILES_dict)
@echo $(SRC_FILES_dict)
@cp $(SRC_FILES_dict) $(CLASS_DEST_DIR)/$(notdir $(SRC_FILES_dict))
delete.classlist:
@rm -f .classes.list
clean:
rm -rf ../classes/com
rm -rf ../doc
#!ifdef FILES_java
# rm -f $(FILES_class)
#!endif
#!ifdef FILES_dict
# rm -f $(FILES_dict)
#!endif
#!ifdef SUBDIRS
# @for %%d in ( $(SUBDIRS) ) do cd %d && nmake -nologo clean && cd ..
#!endif
FORCE: ;

View file

@ -1,68 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
default: classes
JAVAC= javac -classpath $(CLASSPATH) -sourcepath $(SRCDIR) -d $(CLASSDIR) $(JAVACFLAGS)
.SUFFIXES: .java .class
!ifdef FILES_JAVA
FILES_java= $(FILES_java:/=\)
!endif
FILES_class= $(FILES_java:.java=.class)
CLASSDIR= $(CLASSDIR:/=\)
CLASSLIST= classes.list
CLASS_DEST_DIR= $(CLASSDIR)/$(PKGPATH)
$(CLASSDIR) :
mkdir $@
{$(SRCDIR)\$(PKGPATH)}.java{$(CLASSDIR)\$(PKGPATH)}.class:
@echo $(?) >> $(CLASSLIST)
!ifdef FILES_dict
FILES_dict= $(FILES_dict:/=\)
SRC_FILES_dict= $(FILES_dict:classes=src)
!endif
classes: delete.classlist $(CLASSDIR) $(FILES_class) $(FILES_dics)
@if exist $(CLASSLIST) echo Compiling {
@if exist $(CLASSLIST) cat $(CLASSLIST)
if exist $(CLASSLIST) $(JAVAC) @$(CLASSLIST)
rm -f $(CLASSLIST)
!ifdef FILES_dict
# cp $(SRC_FILES_dict) $(TARGDIR)
cp $(SRC_FILES_dict) $(CLASSDIR)\com\ibm\text\resources\
!endif
!ifdef SUBDIRS
@for %%d in ( $(SUBDIRS) ) do cd %d && $(MAKE) classes && cd ..
!endif
dict: $(SRC_FILES_dict)
echo $(FILES_dict)
echo $(SRC_FILES_dict)
cp $(SRC_FILES_dict) $(CLASSDIR)\com\ibm\text\resources\
# cp $(SRC_FILES_dict) $(TARGDIR)
delete.classlist:
@rm -f $(CLASSLIST)
clean:
rm -rf ..\classes\com
rm -rf ..\docs
#!ifdef FILES_java
# rm -f $(FILES_class)
#!endif
#!ifdef FILES_dict
# rm -f $(FILES_dict)
#!endif
#!ifdef SUBDIRS
# @for %%d in ( $(SUBDIRS) ) do cd %d && nmake -nologo clean && cd ..
#!endif
FORCE: ;

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:34 $
#
TOPDIR= ../..
PACKAGE= com
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= ibm
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:36 $
#
TOPDIR= ../../..
PACKAGE= com.ibm
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= util text
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,17 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.3 $ $Date: 2000/03/02 00:39:03 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.demo
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= calendar holiday rbnf rbbi translit
FILES_java= $(TARGDIR)/DemoApplet.java \
$(TARGDIR)/DemoUtility.java \
$(TARGDIR)/DemoTextBox.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:42 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.calendar
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/CalendarApp.java \
$(TARGDIR)/CalendarFrame.java \
$(TARGDIR)/CalendarPanel.java \
$(TARGDIR)/CalendarCalc.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:42 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.calendar
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/CalendarApp.java \
$(TARGDIR)/CalendarFrame.java \
$(TARGDIR)/CalendarPanel.java \
$(TARGDIR)/CalendarCalc.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:43 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.holiday
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/HolidayBorderPanel.java \
$(TARGDIR)/HolidayCalendarDemo.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:44 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.holiday
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/HolidayBorderPanel.java \
$(TARGDIR)/HolidayCalendarDemo.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,17 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.3 $ $Date: 2000/03/02 00:39:03 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.demo
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= calendar holiday rbnf rbbi translit
FILES_java= $(TARGDIR)/DemoApplet.java \
$(TARGDIR)/DemoUtility.java \
$(TARGDIR)/DemoTextBox.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,18 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.3 $ $Date: 2000/03/07 23:23:38 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.rbbi
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/TextBoundDemo.java \
$(TARGDIR)/DBBIDemo.java \
$(TARGDIR)/BreakIteratorRules_en_US_DEMO.java \
FILES_dict= $(TARGDIR)/english.dict \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,18 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.3 $ $Date: 2000/03/07 23:23:39 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.rbbi
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/TextBoundDemo.java \
$(TARGDIR)/DBBIDemo.java \
$(TARGDIR)/BreakIteratorRules_en_US_DEMO.java \
FILES_dict= $(TARGDIR)/english.dict \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:45 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.rbnf
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/RbnfDemo.java \
$(TARGDIR)/RbnfSampleRuleSets.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:45 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.rbnf
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/RbnfDemo.java \
$(TARGDIR)/RbnfSampleRuleSets.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/28 00:47:29 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.translit
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/Demo.java \
$(TARGDIR)/DemoApplet.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/28 00:47:29 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.translit
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/Demo.java \
$(TARGDIR)/DemoApplet.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:43 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.holiday
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/HolidayBorderPanel.java \
$(TARGDIR)/HolidayCalendarDemo.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:44 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.demo.holiday
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/HolidayBorderPanel.java \
$(TARGDIR)/HolidayCalendarDemo.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/27 04:40:32 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.normalizer
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/BasicTest.java \
$(TARGDIR)/ExhaustiveTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.2 $ $Date: 2000/02/27 04:40:32 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.normalizer
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/BasicTest.java \
$(TARGDIR)/ExhaustiveTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:36 $
#
TOPDIR= ../../..
PACKAGE= com.ibm
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= util text
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.5 $ $Date: 2000/03/02 00:37:32 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.test
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= rbnf normalizer rbbi compression bnf translit search calendar topleveltest
FILES_java= $(TARGDIR)/TestFmwk.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:49 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.bnf
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/BigNumberFormatTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:49 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.bnf
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/BigNumberFormatTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,19 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/03/01 18:32:30 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.calendar
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/TestCase.java \
$(TARGDIR)/CalendarTest.java \
$(TARGDIR)/AstroTest.java \
$(TARGDIR)/HebrewTest.java \
$(TARGDIR)/IslamicTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,18 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/03/01 18:32:32 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.calendar
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/TestCase.java \
$(TARGDIR)/CalendarTest.java \
$(TARGDIR)/AstroTest.java \
$(TARGDIR)/HebrewTest.java \
$(TARGDIR)/IslamicTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/25 23:26:15 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.compression
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/ExhaustiveTest.java \
$(TARGDIR)/DecompressionTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.2 $ $Date: 2000/02/25 23:26:17 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.compression
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/ExhaustiveTest.java \
$(TARGDIR)/DecompressionTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.5 $ $Date: 2000/03/02 00:37:32 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.test
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= rbnf normalizer rbbi compression bnf translit search calendar topleveltest
FILES_java= $(TARGDIR)/TestFmwk.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/27 04:40:32 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.normalizer
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/BasicTest.java \
$(TARGDIR)/ExhaustiveTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.2 $ $Date: 2000/02/27 04:40:32 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.normalizer
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/BasicTest.java \
$(TARGDIR)/ExhaustiveTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,17 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.3 $ $Date: 2000/03/02 00:37:58 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.rbbi
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/BreakIteratorTest.java \
$(TARGDIR)/SimpleBITest.java \
$(TARGDIR)/BreakIteratorRules_en_US_TEST.java
FILES_dict= $(TARGDIR)/english.dict \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,17 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.3 $ $Date: 2000/03/02 00:37:58 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.rbbi
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/BreakIteratorTest.java \
$(TARGDIR)/SimpleBITest.java \
$(TARGDIR)/BreakIteratorRules_en_US_TEST.java
FILES_dict= $(TARGDIR)/english.dict \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:53 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.rbnf
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/RbnfTest.java \
$(TARGDIR)/RbnfRoundTripTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:54 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.rbnf
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/RbnfTest.java \
$(TARGDIR)/RbnfRoundTripTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/29 19:51:41 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.search
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/SearchTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/26 22:00:57 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.search
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/SearchTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,14 +0,0 @@
#
# $RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/25 18:27:20 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.topleveltest
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/TestAll.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# $RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/25 18:27:21 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.topleveltest
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/TestAll.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,15 +0,0 @@
#
# $RCSfile: GNUmakefile,v $ $Revision: 1.3 $ $Date: 2000/02/25 18:24:53 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.translit
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/TransliteratorTest.java \
$(TARGDIR)/UnicodeSetTest.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,15 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:55 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.test.translit
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/TransliteratorTest.java \
$(TARGDIR)/UnicodeSetTest.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,64 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/28 01:10:40 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.text
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= resources components
FILES_java= $(TARGDIR)/DateFormatSymbols.java \
$(TARGDIR)/StringSearch.java \
$(TARGDIR)/SearchIterator.java \
$(TARGDIR)/SimpleDateFormat.java \
\
$(TARGDIR)/NFRule.java \
$(TARGDIR)/NFRuleSet.java \
$(TARGDIR)/NFSubstitution.java \
\
$(TARGDIR)/UnicodeSet.java \
$(TARGDIR)/RuleBasedNumberFormat.java \
\
$(TARGDIR)/ComposeData.java \
$(TARGDIR)/DecompData.java \
$(TARGDIR)/UInfo.java \
$(TARGDIR)/Normalizer.java \
$(TARGDIR)/ComposedCharIter.java \
\
$(TARGDIR)/StringCharacterIterator.java \
$(TARGDIR)/CharSet.java \
$(TARGDIR)/BreakDictionary.java \
$(TARGDIR)/RuleBasedBreakIterator.java \
$(TARGDIR)/DictionaryBasedBreakIterator.java \
$(TARGDIR)/BreakIterator.java \
\
$(TARGDIR)/SCSU.java \
$(TARGDIR)/UnicodeCompressor.java \
$(TARGDIR)/UnicodeDecompressor.java \
\
$(TARGDIR)/DigitList.java \
$(TARGDIR)/DecimalFormatSymbols.java \
$(TARGDIR)/NumberFormat.java \
$(TARGDIR)/DecimalFormat.java \
\
$(TARGDIR)/CompoundTransliterator.java \
$(TARGDIR)/HangulJamoTransliterator.java \
$(TARGDIR)/HexToUnicodeTransliterator.java \
$(TARGDIR)/JamoHangulTransliterator.java \
$(TARGDIR)/NullTransliterator.java \
$(TARGDIR)/Replaceable.java \
$(TARGDIR)/ReplaceableString.java \
$(TARGDIR)/RuleBasedTransliterator.java \
$(TARGDIR)/SymbolTable.java \
$(TARGDIR)/TransliterationRule.java \
$(TARGDIR)/TransliterationRuleSet.java \
$(TARGDIR)/Transliterator.java \
$(TARGDIR)/UnicodeFilter.java \
$(TARGDIR)/UnicodeFilterLogic.java \
$(TARGDIR)/UnicodeToHexTransliterator.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:58 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.text.components
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/DumbTextComponent.java \
$(TARGDIR)/Selection.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,14 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:58 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.text.components
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/DumbTextComponent.java \
$(TARGDIR)/Selection.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,64 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.2 $ $Date: 2000/02/28 01:10:41 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.text
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= resources components
FILES_java= $(TARGDIR)/DateFormatSymbols.java \
$(TARGDIR)/StringSearch.java \
$(TARGDIR)/SearchIterator.java \
$(TARGDIR)/SimpleDateFormat.java \
\
$(TARGDIR)/NFRule.java \
$(TARGDIR)/NFRuleSet.java \
$(TARGDIR)/NFSubstitution.java \
\
$(TARGDIR)/UnicodeSet.java \
$(TARGDIR)/RuleBasedNumberFormat.java \
\
$(TARGDIR)/ComposeData.java \
$(TARGDIR)/DecompData.java \
$(TARGDIR)/UInfo.java \
$(TARGDIR)/Normalizer.java \
$(TARGDIR)/ComposedCharIter.java \
\
$(TARGDIR)/StringCharacterIterator.java \
$(TARGDIR)/CharSet.java \
$(TARGDIR)/BreakDictionary.java \
$(TARGDIR)/RuleBasedBreakIterator.java \
$(TARGDIR)/DictionaryBasedBreakIterator.java \
$(TARGDIR)/BreakIterator.java \
\
$(TARGDIR)/SCSU.java \
$(TARGDIR)/UnicodeCompressor.java \
$(TARGDIR)/UnicodeDecompressor.java \
\
$(TARGDIR)/DigitList.java \
$(TARGDIR)/DecimalFormatSymbols.java \
$(TARGDIR)/NumberFormat.java \
$(TARGDIR)/DecimalFormat.java \
\
$(TARGDIR)/CompoundTransliterator.java \
$(TARGDIR)/HangulJamoTransliterator.java \
$(TARGDIR)/HexToUnicodeTransliterator.java \
$(TARGDIR)/JamoHangulTransliterator.java \
$(TARGDIR)/NullTransliterator.java \
$(TARGDIR)/Replaceable.java \
$(TARGDIR)/ReplaceableString.java \
$(TARGDIR)/RuleBasedTransliterator.java \
$(TARGDIR)/SymbolTable.java \
$(TARGDIR)/TransliterationRule.java \
$(TARGDIR)/TransliterationRuleSet.java \
$(TARGDIR)/Transliterator.java \
$(TARGDIR)/UnicodeFilter.java \
$(TARGDIR)/UnicodeFilterLogic.java \
$(TARGDIR)/UnicodeToHexTransliterator.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,52 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.3 $ $Date: 2000/02/23 21:59:14 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.text.resources
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/NumberFormatRules.java \
$(TARGDIR)/NumberFormatRules_de.java \
$(TARGDIR)/NumberFormatRules_el.java \
$(TARGDIR)/NumberFormatRules_en.java \
$(TARGDIR)/NumberFormatRules_en_GB.java \
$(TARGDIR)/NumberFormatRules_es.java \
$(TARGDIR)/NumberFormatRules_fr.java \
$(TARGDIR)/NumberFormatRules_fr_CH.java \
$(TARGDIR)/NumberFormatRules_it.java \
$(TARGDIR)/NumberFormatRules_iw.java \
$(TARGDIR)/NumberFormatRules_ja.java \
$(TARGDIR)/NumberFormatRules_nl.java \
$(TARGDIR)/NumberFormatRules_ru.java \
$(TARGDIR)/NumberFormatRules_sv.java \
\
$(TARGDIR)/BreakIteratorRules.java \
$(TARGDIR)/BreakIteratorRules_th.java \
\
$(TARGDIR)/TransliterationRule_Fullwidth_Halfwidth.java \
$(TARGDIR)/TransliterationRule_Han_Pinyin.java \
$(TARGDIR)/TransliterationRule_Kanji_English.java \
$(TARGDIR)/TransliterationRule_Kanji_OnRomaji.java \
$(TARGDIR)/TransliterationRule_KeyboardEscape_Latin1.java \
$(TARGDIR)/TransliterationRule_Latin_Arabic.java \
$(TARGDIR)/TransliterationRule_Latin_Cyrillic.java \
$(TARGDIR)/TransliterationRule_Latin_Devanagari.java \
$(TARGDIR)/TransliterationRule_Latin_Greek.java \
$(TARGDIR)/TransliterationRule_Latin_Hebrew.java \
$(TARGDIR)/TransliterationRule_Latin_Jamo.java \
$(TARGDIR)/TransliterationRule_Latin_Kana.java \
$(TARGDIR)/TransliterationRule_StraightQuotes_CurlyQuotes.java \
$(TARGDIR)/TransliterationRule_UnicodeName_UnicodeChar.java \
\
$(TARGDIR)/LocaleElements.java \
$(TARGDIR)/LocaleElements_en.java \
FILES_dict= $(TARGDIR)/thai_dict \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,52 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.3 $ $Date: 2000/02/23 21:59:17 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.text.resources
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/NumberFormatRules.java \
$(TARGDIR)/NumberFormatRules_de.java \
$(TARGDIR)/NumberFormatRules_el.java \
$(TARGDIR)/NumberFormatRules_en.java \
$(TARGDIR)/NumberFormatRules_en_GB.java \
$(TARGDIR)/NumberFormatRules_es.java \
$(TARGDIR)/NumberFormatRules_fr.java \
$(TARGDIR)/NumberFormatRules_fr_CH.java \
$(TARGDIR)/NumberFormatRules_it.java \
$(TARGDIR)/NumberFormatRules_iw.java \
$(TARGDIR)/NumberFormatRules_ja.java \
$(TARGDIR)/NumberFormatRules_nl.java \
$(TARGDIR)/NumberFormatRules_ru.java \
$(TARGDIR)/NumberFormatRules_sv.java \
\
$(TARGDIR)/BreakIteratorRules.java \
$(TARGDIR)/BreakIteratorRules_th.java \
\
$(TARGDIR)/TransliterationRule_Fullwidth_Halfwidth.java \
$(TARGDIR)/TransliterationRule_Han_Pinyin.java \
$(TARGDIR)/TransliterationRule_Kanji_English.java \
$(TARGDIR)/TransliterationRule_Kanji_OnRomaji.java \
$(TARGDIR)/TransliterationRule_KeyboardEscape_Latin1.java \
$(TARGDIR)/TransliterationRule_Latin_Arabic.java \
$(TARGDIR)/TransliterationRule_Latin_Cyrillic.java \
$(TARGDIR)/TransliterationRule_Latin_Devanagari.java \
$(TARGDIR)/TransliterationRule_Latin_Greek.java \
$(TARGDIR)/TransliterationRule_Latin_Hebrew.java \
$(TARGDIR)/TransliterationRule_Latin_Jamo.java \
$(TARGDIR)/TransliterationRule_Latin_Kana.java \
$(TARGDIR)/TransliterationRule_StraightQuotes_CurlyQuotes.java \
$(TARGDIR)/TransliterationRule_UnicodeName_UnicodeChar.java \
\
$(TARGDIR)/LocaleElements.java \
$(TARGDIR)/LocaleElements_en.java \
FILES_dict= $(TARGDIR)/thai_dict \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:01 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.tools
include $(TOPDIR)/src/build/defs.gmk
SUBDIRS= normalizer RuleBasedBreakIterator compression
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,16 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:02 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.tools.RuleBasedBreakIterator
include $(TOPDIR)/src/build/defs.gmk
FILES_java= \
$(TARGDIR)/../../util/CompactByteArray.java \
$(TARGDIR)/../../text/CharSet.java \
$(TARGDIR)/BuildDictionaryFile.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,16 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:03 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.tools.RuleBasedBreakIterator
!include $(TOPDIR)/src/build/defs.mak
FILES_java= \
$(TARGDIR)/../../util/CompactByteArray.java \
$(TARGDIR)/../../text/CharSet.java \
$(TARGDIR)/BuildDictionaryFile.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:05 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.tools.compression
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/CompressionTableGenerator.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:05 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.tools.compression
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/CompressionTableGenerator.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:01 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.tools
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= normalizer RuleBasedBreakIterator compression
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,17 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:06 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.tools.normalizer
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/NormalizerBuilder.java \
$(TARGDIR)/MutableChar.java \
$(TARGDIR)/SourceWriter.java \
$(TARGDIR)/JavaWriter.java \
$(TARGDIR)/CPPWriter.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,17 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:40:07 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.tools.normalizer
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/NormalizerBuilder.java \
$(TARGDIR)/MutableChar.java \
$(TARGDIR)/SourceWriter.java \
$(TARGDIR)/JavaWriter.java \
$(TARGDIR)/CPPWriter.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,35 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/25 23:57:12 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.util
SUBDIRS= resources
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/IBMCalendar.java \
$(TARGDIR)/CalendarAstronomer.java \
$(TARGDIR)/CalendarCache.java \
$(TARGDIR)/BuddhistCalendar.java \
$(TARGDIR)/HebrewCalendar.java \
$(TARGDIR)/IslamicCalendar.java \
$(TARGDIR)/JapaneseCalendar.java \
\
$(TARGDIR)/DateRule.java \
$(TARGDIR)/EasterHoliday.java \
$(TARGDIR)/HebrewHoliday.java \
$(TARGDIR)/Holiday.java \
$(TARGDIR)/RangeDateRule.java \
$(TARGDIR)/SimpleDateRule.java \
$(TARGDIR)/SimpleHoliday.java \
\
$(TARGDIR)/Utility.java \
$(TARGDIR)/CompactByteArray.java \
$(TARGDIR)/CompactCharArray.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,35 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.2 $ $Date: 2000/02/25 23:57:12 $
#
TOPDIR= ../../../..
PACKAGE= com.ibm.util
SUBDIRS= resources
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/IBMCalendar.java \
$(TARGDIR)/CalendarAstronomer.java \
$(TARGDIR)/CalendarCache.java \
$(TARGDIR)/BuddhistCalendar.java \
$(TARGDIR)/HebrewCalendar.java \
$(TARGDIR)/IslamicCalendar.java \
$(TARGDIR)/JapaneseCalendar.java \
\
$(TARGDIR)/DateRule.java \
$(TARGDIR)/EasterHoliday.java \
$(TARGDIR)/HebrewHoliday.java \
$(TARGDIR)/Holiday.java \
$(TARGDIR)/RangeDateRule.java \
$(TARGDIR)/SimpleDateRule.java \
$(TARGDIR)/SimpleHoliday.java \
\
$(TARGDIR)/Utility.java \
$(TARGDIR)/CompactByteArray.java \
$(TARGDIR)/CompactCharArray.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,53 +0,0 @@
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/03/01 01:57:00 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.util.resources
include $(TOPDIR)/src/build/defs.gmk
FILES_java= $(TARGDIR)/BuddhistCalendarSymbols.java \
$(TARGDIR)/BuddhistCalendarSymbols_ar.java \
$(TARGDIR)/BuddhistCalendarSymbols_hu.java \
$(TARGDIR)/BuddhistCalendarSymbols_th.java \
$(TARGDIR)/HebrewCalendarSymbols.java \
$(TARGDIR)/HebrewCalendarSymbols_fi.java \
$(TARGDIR)/HebrewCalendarSymbols_fr.java \
$(TARGDIR)/HebrewCalendarSymbols_hu.java \
$(TARGDIR)/HebrewCalendarSymbols_iw.java \
$(TARGDIR)/HebrewCalendarSymbols_nl.java \
$(TARGDIR)/IslamicCalendarSymbols.java \
$(TARGDIR)/IslamicCalendarSymbols_ar.java \
$(TARGDIR)/IslamicCalendarSymbols_fi.java \
$(TARGDIR)/IslamicCalendarSymbols_fr.java \
$(TARGDIR)/IslamicCalendarSymbols_hu.java \
$(TARGDIR)/IslamicCalendarSymbols_iw.java \
$(TARGDIR)/IslamicCalendarSymbols_nl.java \
$(TARGDIR)/JapaneseCalendarSymbols.java \
$(TARGDIR)/JapaneseCalendarSymbols_ja.java \
$(TARGDIR)/HolidayBundle.java \
$(TARGDIR)/HolidayBundle_da.java \
$(TARGDIR)/HolidayBundle_da_DK.java \
$(TARGDIR)/HolidayBundle_de.java \
$(TARGDIR)/HolidayBundle_de_AT.java \
$(TARGDIR)/HolidayBundle_de_DE.java \
$(TARGDIR)/HolidayBundle_el.java \
$(TARGDIR)/HolidayBundle_el_GR.java \
$(TARGDIR)/HolidayBundle_en.java \
$(TARGDIR)/HolidayBundle_en_CA.java \
$(TARGDIR)/HolidayBundle_en_GB.java \
$(TARGDIR)/HolidayBundle_en_US.java \
$(TARGDIR)/HolidayBundle_es.java \
$(TARGDIR)/HolidayBundle_es_MX.java \
$(TARGDIR)/HolidayBundle_fr.java \
$(TARGDIR)/HolidayBundle_fr_CA.java \
$(TARGDIR)/HolidayBundle_fr_FR.java \
$(TARGDIR)/HolidayBundle_it.java \
$(TARGDIR)/HolidayBundle_it_IT.java \
$(TARGDIR)/HolidayBundle_iw.java \
$(TARGDIR)/HolidayBundle_iw_IL.java \
$(TARGDIR)/HolidayBundle_ja_JP.java \
include $(TOPDIR)/src/build/rules.gmk

View file

@ -1,53 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.2 $ $Date: 2000/03/02 01:29:15 $
#
TOPDIR= ../../../../..
PACKAGE= com.ibm.util.resources
!include $(TOPDIR)/src/build/defs.mak
FILES_java= $(TARGDIR)/BuddhistCalendarSymbols.java \
$(TARGDIR)/BuddhistCalendarSymbols_ar.java \
$(TARGDIR)/BuddhistCalendarSymbols_hu.java \
$(TARGDIR)/BuddhistCalendarSymbols_th.java \
$(TARGDIR)/HebrewCalendarSymbols.java \
$(TARGDIR)/HebrewCalendarSymbols_fi.java \
$(TARGDIR)/HebrewCalendarSymbols_fr.java \
$(TARGDIR)/HebrewCalendarSymbols_hu.java \
$(TARGDIR)/HebrewCalendarSymbols_iw.java \
$(TARGDIR)/HebrewCalendarSymbols_nl.java \
$(TARGDIR)/IslamicCalendarSymbols.java \
$(TARGDIR)/IslamicCalendarSymbols_ar.java \
$(TARGDIR)/IslamicCalendarSymbols_fi.java \
$(TARGDIR)/IslamicCalendarSymbols_fr.java \
$(TARGDIR)/IslamicCalendarSymbols_hu.java \
$(TARGDIR)/IslamicCalendarSymbols_iw.java \
$(TARGDIR)/IslamicCalendarSymbols_nl.java \
$(TARGDIR)/JapaneseCalendarSymbols.java \
$(TARGDIR)/JapaneseCalendarSymbols_ja.java \
$(TARGDIR)/HolidayBundle.java \
$(TARGDIR)/HolidayBundle_da.java \
$(TARGDIR)/HolidayBundle_da_DK.java \
$(TARGDIR)/HolidayBundle_de.java \
$(TARGDIR)/HolidayBundle_de_AT.java \
$(TARGDIR)/HolidayBundle_de_DE.java \
$(TARGDIR)/HolidayBundle_el.java \
$(TARGDIR)/HolidayBundle_el_GR.java \
$(TARGDIR)/HolidayBundle_en.java \
$(TARGDIR)/HolidayBundle_en_CA.java \
$(TARGDIR)/HolidayBundle_en_GB.java \
$(TARGDIR)/HolidayBundle_en_US.java \
$(TARGDIR)/HolidayBundle_es.java \
$(TARGDIR)/HolidayBundle_es_MX.java \
$(TARGDIR)/HolidayBundle_fr.java \
$(TARGDIR)/HolidayBundle_fr_CA.java \
$(TARGDIR)/HolidayBundle_fr_FR.java \
$(TARGDIR)/HolidayBundle_it.java \
$(TARGDIR)/HolidayBundle_it_IT.java \
$(TARGDIR)/HolidayBundle_iw.java \
$(TARGDIR)/HolidayBundle_iw_IL.java \
$(TARGDIR)/HolidayBundle_ja_JP.java \
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,13 +0,0 @@
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.1 $ $Date: 2000/02/16 23:39:34 $
#
TOPDIR= ../..
PACKAGE= com
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= ibm
!include $(TOPDIR)/src/build/rules.mak

View file

@ -1,50 +0,0 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.10 $ $Date: 2000/03/09 18:38:20 $
#
TOPDIR= ..
PACKAGE=
!include $(TOPDIR)/src/build/defs.mak
SUBDIRS= com
default: classes
DOCDIR= $(TOPDIR)\docs
DOCINDEX= $(DOCDIR)/index.html
javadoc: FORCE
rm -rf $(DOCDIR)
mkdir $(DOCDIR)
javadoc -d $(DOCDIR) \
-nodeprecatedlist \
-windowTitle "ICU4J" \
-docTitle "ICU4J" \
-encoding "iso-8859-1" \
-docencoding "iso-8859-1" \
-bottom "<font size=-1>Copyright &copy; 1998-2000 IBM Corporation.</font>" \
com/ibm/text/*.java com/ibm/util/*.java
tools: classes toolsinternal
tests: classes testsinternal
demos: classes demosinternal
toolsinternal: FORCE
cd com\ibm\tools && $(MAKE) classes && cd ..\..\..
testsinternal: FORCE
cd com\ibm\test && $(MAKE) classes && cd ..\..\..
demosinternal: FORCE
cd com\ibm\demo && $(MAKE) classes && cd ..\..\..
complete: classes testsinternal toolsinternal demosinternal javadoc
!include $(TOPDIR)/src/build/rules.mak