ca9aabb7a9
2005/06/13 08:49:04 is 1.30.58.2: RESYNC: (1.30-1.31); FILE MERGED 2005/06/07 12:53:10 is 1.30.58.1: #123407# OOo with JRE
200 lines
5.1 KiB
Makefile
200 lines
5.1 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# $RCSfile: makefile.mk,v $
|
|
#
|
|
# The Contents of this file are made available subject to the terms of
|
|
# either of the following licenses
|
|
#
|
|
# - GNU Lesser General Public License Version 2.1
|
|
# - Sun Industry Standards Source License Version 1.1
|
|
#
|
|
# Sun Microsystems Inc., October, 2000
|
|
#
|
|
# GNU Lesser General Public License Version 2.1
|
|
# =============================================
|
|
# Copyright 2000 by Sun Microsystems, Inc.
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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
|
|
#
|
|
#
|
|
# Sun Industry Standards Source License Version 1.1
|
|
# =================================================
|
|
# The contents of this file are subject to the Sun Industry Standards
|
|
# Source License Version 1.1 (the "License"); You may not use this file
|
|
# except in compliance with the License. You may obtain a copy of the
|
|
# License at http://www.openoffice.org/license.html.
|
|
#
|
|
# Software provided under this License is provided on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
# See the License for the specific provisions governing your rights and
|
|
# obligations concerning the Software.
|
|
#
|
|
# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
#
|
|
# Copyright: 2000 by Sun Microsystems, Inc.
|
|
#
|
|
# All Rights Reserved.
|
|
#
|
|
# Contributor(s): _______________________________________
|
|
#
|
|
#
|
|
#
|
|
#*************************************************************************
|
|
PRJ=..$/..
|
|
|
|
PRJPCH=
|
|
|
|
PRJNAME=scp2
|
|
TARGET=ooo
|
|
TARGETTYPE=CUI
|
|
|
|
USE_JAVAVER=TRUE
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
.INCLUDE : settings.mk
|
|
.INCLUDE : icuversion.mk
|
|
|
|
.IF "$(ENABLE_CRASHDUMP)"!=""
|
|
SCPDEFS+=-DENABLE_CRASHDUMP
|
|
.ENDIF
|
|
|
|
.IF "$(JAVANUMVER)" >= "000100040000"
|
|
SCPDEFS+=-DINCLUDE_JAVA_ACCESSBRIDGE
|
|
.ENDIF
|
|
|
|
.IF "$(GUI)"=="UNX"
|
|
.IF "$(ENABLE_GTK)" != ""
|
|
SCPDEFS+=-DENABLE_GTK
|
|
PKGCONFIG_MODULES=gtk+-2.0
|
|
.INCLUDE: pkg_config.mk
|
|
GTK_TWO_FOUR=$(shell +-$(PKGCONFIG) --exists 'gtk+-2.0 >= 2.4.0' && echo YES)
|
|
.IF "$(GTK_TWO_FOUR)" != ""
|
|
SCPDEFS+=-DGTK_TWO_FOUR
|
|
.ENDIF
|
|
.ENDIF
|
|
.ENDIF # "$(GUI)"=="UNX"
|
|
|
|
.IF "$(ENABLE_PASF)" != ""
|
|
SCPDEFS+=-DUSE_PASF
|
|
.ENDIF
|
|
|
|
.IF "$(ENABLE_KDE)" != ""
|
|
SCPDEFS+=-DENABLE_KDE
|
|
.ENDIF
|
|
|
|
.IF "$(ENABLE_EVOAB2)" != ""
|
|
SCPDEFS+=-DENABLE_EVOAB2
|
|
.ENDIF
|
|
|
|
.IF "$(ENABLE_DIRECTX)" != ""
|
|
SCPDEFS+=-DENABLE_DIRECTX
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_FREETYPE)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_FREETYPE
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_LIBXML)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_LIBXML
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_DB)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_DB
|
|
.ENDIF
|
|
|
|
.IF "$(USE_SYSTEM_STL)" == "YES"
|
|
SCPDEFS+=-DUSE_SYSTEM_STL
|
|
.ENDIF
|
|
|
|
.IF "$(WITH_MOZILLA)" == "NO"
|
|
SCPDEFS+=-DWITHOUT_MOZILLA
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_MOZILLA)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_MOZILLA
|
|
.ENDIF
|
|
|
|
.IF "$(WITH_OPENLDAP)" == "YES"
|
|
SCPDEFS+=-DWITH_OPENLDAP
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_CURL)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_CURL
|
|
.ENDIF
|
|
|
|
.IF "$(WITH_BINFILTER)" == "NO"
|
|
SCPDEFS+=-DWITHOUT_BINFILTER
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_STDLIBS)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_STDLIBS
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_SNDFILE)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_SNDFILE
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_PORTAUDIO)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_PORTAUDIO
|
|
.ENDIF
|
|
|
|
.IF "$(SYSTEM_MYSPELL)" == "YES"
|
|
SCPDEFS+=-DSYSTEM_MYSPELL
|
|
.ENDIF
|
|
|
|
SCPDEFS+=\
|
|
-DICU_MAJOR=$(ICU_MAJOR) \
|
|
-DICU_MINOR=$(ICU_MINOR) \
|
|
-DICU_MICRO=$(ICU_MICRO)
|
|
|
|
SCP_PRODUCT_TYPE=osl
|
|
|
|
PARFILES= \
|
|
installation_ooo.par \
|
|
scpaction_ooo.par \
|
|
directory_ooo.par \
|
|
datacarrier_ooo.par \
|
|
file_ooo.par \
|
|
file_images_ooo.par \
|
|
file_extra_ooo.par \
|
|
file_font_ooo.par \
|
|
file_library_ooo.par \
|
|
file_resource_ooo.par \
|
|
shortcut_ooo.par \
|
|
module_ooo.par \
|
|
module_hidden_ooo.par \
|
|
profile_ooo.par \
|
|
profileitem_ooo.par
|
|
|
|
.IF "$(GUI)"=="WNT"
|
|
PARFILES += \
|
|
file_jre_ooo.par \
|
|
folder_ooo.par \
|
|
folderitem_ooo.par \
|
|
registryitem_ooo.par
|
|
.ENDIF
|
|
|
|
ULFFILES= \
|
|
directory_ooo.ulf \
|
|
folderitem_ooo.ulf \
|
|
module_ooo.ulf \
|
|
registryitem_ooo.ulf
|
|
|
|
# --- File ---------------------------------------------------------
|
|
.INCLUDE : target.mk
|