merge the formfield patch from ooo-build
[ooovba.git] / apache-commons / java / httpclient / makefile.mk
blob247c6ba320b90318182755bd35877e76181a3c08
1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: makefile.mk,v $
11 # $Revision: 1.3 $
13 # This file is part of OpenOffice.org.
15 # OpenOffice.org is free software: you can redistribute it and/or modify
16 # it under the terms of the GNU Lesser General Public License version 3
17 # only, as published by the Free Software Foundation.
19 # OpenOffice.org is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU Lesser General Public License version 3 for more details
23 # (a copy is included in the LICENSE file that accompanied this code).
25 # You should have received a copy of the GNU Lesser General Public License
26 # version 3 along with OpenOffice.org. If not, see
27 # <http://www.openoffice.org/license.html>
28 # for a copy of the LGPLv3 License.
30 #*************************************************************************
32 PRJ=..$/..
34 PRJNAME=apache-commons
35 TARGET=commons-httpclient
37 # --- Settings -----------------------------------------------------
39 .INCLUDE : settings.mk
41 # override buildfile
42 ANT_BUILDFILE=build.xml
44 .INCLUDE : antsettings.mk
46 TAR!:=$(GNUTAR)
48 .IF "$(SOLAR_JAVA)" != "" && "$(ENABLE_MEDIAWIKI)" == "YES"
49 # --- Files --------------------------------------------------------
51 TARFILE_NAME=commons-httpclient-3.1-src
53 TARFILE_ROOTDIR=commons-httpclient-3.1
55 #PATCH_FILES=$(PRJ)$/patches$/httpclient.patch
57 #CONVERTFILES=build.xml
59 OUT2CLASS=dist$/commons-httpclient.jar
61 COMMONS_LOGGING_JAR=..$/..$/..$/..$/$(INPATH)$/class$/commons-logging-1.1.1-SNAPSHOT.jar
62 COMMONS_CODEC_JAR=..$/..$/..$/..$/$/$(INPATH)$/class$/commons-codec-1.3.jar
64 ANT_OPTS+="-Dfile.encoding=ISO-8859-1"
65 .EXPORT : ANT_OPTS
67 .IF "$(JAVACISGCJ)"=="yes"
68 JAVA_HOME=
69 .EXPORT : JAVA_HOME
70 BUILD_ACTION=$(ANT) -Dbuild.label="build-$(RSCREVISION)" -Dbuild.compiler=gcj -Dcommons-logging.jar=$(COMMONS_LOGGING_JAR) -Dcommons-codec.jar=$(COMMONS_CODEC_JAR) -f $(ANT_BUILDFILE) dist
71 .ELSE
72 BUILD_ACTION=$(ANT) -Dbuild.label="build-$(RSCREVISION)" -Dcommons-logging.jar=$(COMMONS_LOGGING_JAR) -Dcommons-codec.jar=$(COMMONS_CODEC_JAR) -Dant.build.javac.source=$(JAVA_SOURCE_VER) -Dant.build.javac.target=$(JAVA_TARGET_VER) -f $(ANT_BUILDFILE) dist
73 .ENDIF
75 .ENDIF # $(SOLAR_JAVA)!= ""
77 # --- Targets ------------------------------------------------------
79 .INCLUDE : set_ext.mk
80 .INCLUDE : target.mk
82 .IF "$(SOLAR_JAVA)" != "" && "$(ENABLE_MEDIAWIKI)" == "YES"
83 .INCLUDE : tg_ext.mk
84 .ENDIF