2008-02-04 02:02:15 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 04:04:08 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2008-02-04 02:02:15 -06:00
|
|
|
#
|
2008-04-11 04:04:08 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2008-02-04 02:02:15 -06:00
|
|
|
#
|
2008-04-11 04:04:08 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2008-02-04 02:02:15 -06:00
|
|
|
#
|
2008-04-11 04:04:08 -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.
|
2008-02-04 02:02:15 -06:00
|
|
|
#
|
2008-04-11 04:04:08 -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).
|
2008-02-04 02:02:15 -06:00
|
|
|
#
|
2008-04-11 04:04:08 -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.
|
2008-02-04 02:02:15 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=.
|
|
|
|
|
|
|
|
PRJNAME=tomacat
|
|
|
|
TARGET=servlet
|
|
|
|
|
|
|
|
.IF "$(SOLAR_JAVA)" != ""
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
2008-02-11 07:37:21 -06:00
|
|
|
.INCLUDE : antsettings.mk
|
2008-02-04 02:02:15 -06:00
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
|
|
|
TARFILE_NAME=jakarta-tomcat-5.0.30-src
|
2010-01-15 07:55:12 -06:00
|
|
|
TARFILE_MD5=2a177023f9ea8ec8bd00837605c5df1b
|
2008-02-04 02:02:15 -06:00
|
|
|
|
|
|
|
TARFILE_ROOTDIR=jakarta-tomcat-5.0.30-src
|
|
|
|
|
2008-06-24 04:13:43 -05:00
|
|
|
ADDITIONAL_FILES = jakarta-servletapi-5/build.xml
|
2008-02-04 02:02:15 -06:00
|
|
|
|
2009-02-19 01:29:28 -06:00
|
|
|
PATCH_FILES=tomcat.patch
|
2008-02-04 02:02:15 -06:00
|
|
|
|
|
|
|
BUILD_DIR=jakarta-servletapi-5
|
2010-09-16 11:33:30 -05:00
|
|
|
|
|
|
|
.IF "$(JAVACISGCJ)"=="yes"
|
2008-02-04 02:02:15 -06:00
|
|
|
BUILD_ACTION=$(ANT)
|
2010-09-16 11:33:30 -05:00
|
|
|
.ELSE
|
|
|
|
BUILD_ACTION=$(ANT) -Dant.build.javac.source=$(JAVA_SOURCE_VER) -Dant.build.javac.target=$(JAVA_TARGET_VER)
|
|
|
|
.ENDIF
|
2008-02-04 02:02:15 -06:00
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : set_ext.mk
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
|
|
|
|
.INCLUDE : tg_ext.mk
|
|
|
|
|
|
|
|
.ELSE
|
|
|
|
@all:
|
|
|
|
@echo java disabled
|
|
|
|
.ENDIF
|