2004-11-09 06:59:27 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# $RCSfile: makefile.mk,v $
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2006-09-25 03:43:59 -05:00
|
|
|
# $Revision: 1.15 $
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2006-09-25 03:43:59 -05:00
|
|
|
# last change: $Author: vg $ $Date: 2006-09-25 09:43:59 $
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# The Contents of this file are made available subject to
|
|
|
|
# the terms of GNU Lesser General Public License Version 2.1.
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# GNU Lesser General Public License Version 2.1
|
|
|
|
# =============================================
|
|
|
|
# Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License version 2.1, as published by the Free Software Foundation.
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# This library 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 for more details.
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
2005-09-07 10:27:52 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
2004-11-09 06:59:27 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=.
|
|
|
|
|
|
|
|
PRJNAME=so_hsqldb
|
|
|
|
TARGET=so_hsqldb
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
2006-08-14 10:18:13 -05:00
|
|
|
|
|
|
|
# override buildfile
|
|
|
|
ANT_BUILDFILE=build$/build.xml
|
|
|
|
|
2006-01-31 11:42:02 -06:00
|
|
|
.INCLUDE : antsettings.mk
|
|
|
|
|
2004-11-09 06:59:27 -06:00
|
|
|
.INCLUDE : version.mk
|
|
|
|
|
2004-11-26 06:10:37 -06:00
|
|
|
.IF "$(SOLAR_JAVA)" != ""
|
2005-01-25 08:11:29 -06:00
|
|
|
# --- Files --------------------------------------------------------
|
2004-11-26 06:10:37 -06:00
|
|
|
|
2004-11-09 06:59:27 -06:00
|
|
|
TARFILE_NAME=hsqldb_$(HSQLDB_VERSION)
|
2006-07-10 13:01:25 -05:00
|
|
|
|
2004-11-09 06:59:27 -06:00
|
|
|
TARFILE_ROOTDIR=hsqldb
|
|
|
|
|
2006-01-31 11:42:02 -06:00
|
|
|
CONVERTFILES=build$/build.xml\
|
|
|
|
doc/changelist_1_8_0.txt\
|
2006-09-25 03:43:59 -05:00
|
|
|
src/org/hsqldb/resources/sql-error-messages.properties
|
2005-03-23 07:55:56 -06:00
|
|
|
PATCH_FILE_NAME=hsqldb_1_8_0
|
|
|
|
|
2005-06-27 02:26:45 -05:00
|
|
|
# ADDITIONAL_FILES= src$/org$/hsqldb$/Collation.java \
|
|
|
|
# src$/org$/hsqldb$/TxManager.java \
|
|
|
|
# src$/org$/hsqldb$/lib$/LongKeyIntValueHashMap.java \
|
|
|
|
# src$/org$/hsqldb$/persist$/ScaledRAFileInJar.java \
|
|
|
|
# src$/org$/hsqldb$/test$/TestCollation.java
|
2005-03-23 07:55:56 -06:00
|
|
|
|
2006-07-05 15:13:42 -05:00
|
|
|
.IF "$(JAVACISGCJ)"=="yes"
|
2005-03-15 02:08:29 -06:00
|
|
|
JAVA_HOME=
|
|
|
|
.EXPORT : JAVA_HOME
|
2005-07-14 05:42:39 -05:00
|
|
|
BUILD_ACTION=$(ANT) -Dbuild.label="build-$(RSCREVISION)" -Dbuild.compiler=gcj -f $(ANT_BUILDFILE) jar
|
2005-03-15 02:08:29 -06:00
|
|
|
.ELSE
|
2005-07-14 05:42:39 -05:00
|
|
|
BUILD_ACTION=$(ANT) -Dbuild.label="build-$(RSCREVISION)" -f $(ANT_BUILDFILE) jar
|
2005-01-25 08:11:29 -06:00
|
|
|
.ENDIF
|
2005-03-15 02:08:29 -06:00
|
|
|
|
2004-11-26 06:10:37 -06:00
|
|
|
.ENDIF # $(SOLAR_JAVA)!= ""
|
2004-11-09 06:59:27 -06:00
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : set_ext.mk
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
|
2004-11-26 06:10:37 -06:00
|
|
|
.IF "$(SOLAR_JAVA)" != ""
|
|
|
|
.INCLUDE : tg_ext.mk
|
|
|
|
.ENDIF
|
2004-11-09 06:59:27 -06:00
|
|
|
|