diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-09-13 16:57:17 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-09-13 16:57:17 +0000 |
commit | 45326f7ed4d4692d5ab2a4d2844ebb9bf42da298 (patch) | |
tree | f1d1a447d24cf68ebc00250fca12340613c501f8 /connectivity | |
parent | 1da2728e45f55524ac0ff715a0e1574c67db176d (diff) |
INTEGRATION: CWS macaddressbook01 (1.1.2); FILE ADDED
2007/07/29 18:15:58 cremlae 1.1.2.2: #i77591# Removed DOS line-endings from all files that have them
2007/07/08 19:21:00 msicotte 1.1.2.1: #i77591# initial commit
Diffstat (limited to 'connectivity')
-rwxr-xr-x | connectivity/source/drivers/macab/makefile.mk | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/connectivity/source/drivers/macab/makefile.mk b/connectivity/source/drivers/macab/makefile.mk new file mode 100755 index 000000000000..08da83fa780a --- /dev/null +++ b/connectivity/source/drivers/macab/makefile.mk @@ -0,0 +1,140 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# last change: $Author: ihi $ $Date: 2007-09-13 17:57:17 $ +# +# The Contents of this file are made available subject to +# the terms of GNU Lesser General Public License Version 2.1. +# +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2005 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 +# +#************************************************************************* + +PRJ=..$/..$/.. +PRJINC=..$/.. +PRJNAME=connectivity +TARGET=macab +TARGET2=$(TARGET)drv + +ENABLE_EXCEPTIONS=TRUE + +# --- Settings ---------------------------------- + +.INCLUDE : settings.mk +.INCLUDE : $(PRJ)$/version.mk + +.IF "$(GUI)" == "UNX" +.IF "$(OS)" == "MACOSX" + +# === MACAB base library ========================== + +# --- Files ------------------------------------- + +SLOFILES= \ + $(SLO)$/MacabDriver.obj \ + $(SLO)$/MacabServices.obj + +DEPOBJFILES= \ + $(SLO2FILES) + +# --- Library ----------------------------------- + +SHL1VERSIONMAP=$(TARGET).map + +SHL1TARGET= $(TARGET)$(MACAB_MAJOR) +SHL1OBJS=$(SLOFILES) +SHL1STDLIBS=\ + $(CPPULIB) \ + $(CPPUHELPERLIB) \ + $(SALLIB) + +SHL1DEPN= +SHL1IMPLIB= i$(TARGET) + +SHL1DEF= $(MISC)$/$(SHL1TARGET).def + +DEF1NAME= $(SHL1TARGET) + +# === MACAB impl library ========================== + +# --- Files ------------------------------------- + +SLO2FILES=\ + $(SLO)$/MacabColumns.obj \ + $(SLO)$/MacabTable.obj \ + $(SLO)$/MacabTables.obj \ + $(SLO)$/MacabCatalog.obj \ + $(SLO)$/MacabResultSet.obj \ + $(SLO)$/MacabStatement.obj \ + $(SLO)$/MacabPreparedStatement.obj \ + $(SLO)$/MacabDatabaseMetaData.obj \ + $(SLO)$/MacabConnection.obj \ + $(SLO)$/MacabResultSetMetaData.obj \ + $(SLO)$/macabcondition.obj \ + $(SLO)$/macaborder.obj \ + $(SLO)$/MacabRecord.obj \ + $(SLO)$/MacabRecords.obj \ + $(SLO)$/MacabHeader.obj \ + $(SLO)$/MacabGroup.obj \ + $(SLO)$/MacabAddressBook.obj + +MACAB_LIB=-framework Carbon -framework AddressBook + +# --- Library ----------------------------------- + +SHL2VERSIONMAP=$(TARGET2).map + +SHL2TARGET= $(TARGET2)$(MACAB_MAJOR) +SHL2OBJS=$(SLO2FILES) +SHL2STDLIBS=\ + $(CPPULIB) \ + $(CPPUHELPERLIB) \ + $(VOSLIB) \ + $(SALLIB) \ + $(DBTOOLSLIB) \ + $(COMPHELPERLIB) \ + $(MACAB_LIB) + +SHL2DEPN= +SHL2IMPLIB= i$(TARGET2) + +SHL2DEF= $(MISC)$/$(SHL2TARGET).def + +DEF2NAME= $(SHL2TARGET) + +# --- Targets ----------------------------------- +.ELSE # "$(OS)" == "MACOSX" +dummy: + @echo Not using Mac OS X - nothing to build +.ENDIF + +.ELSE # "$(GUI)" == "UNX" +dummy: + @echo "Nothing to build for GUI $(GUI)" +.ENDIF + +.INCLUDE : target.mk + |