2003-10-06 03:58:36 -05:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# $RCSfile: makefile.mk,v $
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# $Revision: 1.6 $
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
2008-04-10 13:18:16 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2003-10-06 03:58:36 -05:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJNAME = chart2
|
|
|
|
PRJ = ..
|
|
|
|
TARGET = chart_qa
|
|
|
|
|
|
|
|
PACKAGE = qa
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
|
|
|
MAXLINELENGTH = 100000
|
|
|
|
|
|
|
|
# - rdb ----
|
|
|
|
|
2007-05-22 11:13:45 -05:00
|
|
|
RDB = $(SOLARBINDIR)$/types.rdb
|
2003-10-06 03:58:36 -05:00
|
|
|
JAVADIR = $(OUT)$/misc$/java
|
2004-07-23 09:14:24 -05:00
|
|
|
JARFILES = ridl.jar
|
2003-10-06 03:58:36 -05:00
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
|
|
|
JAVACLASSFILES = \
|
|
|
|
$(CLASSDIR)$/$(PACKAGE)$/TestCaseOldAPI.class
|
|
|
|
|
2004-07-23 09:14:24 -05:00
|
|
|
JARFILES = ridl.jar jurt.jar unoil.jar juh.jar OOoRunner.jar
|
2003-10-06 03:58:36 -05:00
|
|
|
JAVAFILES = $(subst,$(CLASSDIR)$/$(PACKAGE)$/, $(subst,.class,.java $(JAVACLASSFILES)))
|
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
|
|
|
|
# --- Dependencies -------------------------------------------------
|
|
|
|
|
|
|
|
# Note: define dependencies after including target.mk (otherwise no targets are
|
|
|
|
# defined)
|
|
|
|
|
|
|
|
ALLTAR: runtest
|
|
|
|
|
|
|
|
# --- Rules --------------------------------------------------------
|
|
|
|
|
|
|
|
runtest: $(subst,.class,.run $(JAVACLASSFILES))
|
|
|
|
|
|
|
|
%.run: %.class
|
2007-07-24 07:20:29 -05:00
|
|
|
+@java -classpath $(CLASSPATH) org.openoffice.Runner -TestBase java_complex -o $(subst,$(CLASSDIR)$/$(PACKAGE)$/,$(PACKAGE). $(subst,.class, $<))
|