summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-04 08:55:59 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-04 08:55:59 +0000
commit2e11ff14633dc47b0a4349a7762c4a152b145a93 (patch)
tree06a22b42046c119e107325f68db948f193091039
parentb91c53d297c088288091f151e5ff44aa0e3c769c (diff)
INTEGRATION: CWS onlineupdate3 (1.1.2); FILE ADDED
2006/07/21 04:57:45 obr 1.1.2.4: #i66949# added config services to communicate with tools/options 2006/07/19 07:37:22 dv 1.1.2.3: Fixed for Windows 2006/07/17 09:37:31 obr 1.1.2.2: #i66949# UI strings added to JobConfig 2006/07/12 08:59:34 obr 1.1.2.1: #i66949# initial commit of update check task
-rw-r--r--extensions/source/update/check/makefile.mk116
1 files changed, 116 insertions, 0 deletions
diff --git a/extensions/source/update/check/makefile.mk b/extensions/source/update/check/makefile.mk
new file mode 100644
index 000000000000..7d5efcde4949
--- /dev/null
+++ b/extensions/source/update/check/makefile.mk
@@ -0,0 +1,116 @@
+#*************************************************************************
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# $RCSfile: makefile.mk,v $
+#
+# $Revision: 1.2 $
+#
+# last change: $Author: ihi $ $Date: 2006-08-04 09:55:59 $
+#
+# 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=..$/..$/..
+
+PRJNAME=extensions
+TARGET=updchk
+
+LIBTARGET=NO
+ENABLE_EXCEPTIONS=TRUE
+
+COMP1TYPELIST=$(TARGET)
+COMPRDB=$(SOLARBINDIR)$/types.rdb
+UNOUCROUT=$(OUT)$/inc$/$(TARGET)
+INCPRE=$(UNOUCROUT)
+
+XSLDIR=$(SOLARXMLDIR)$/processing
+XCSROOT=$(SOLARXMLDIR)
+DTDDIR=$(SOLARXMLDIR)
+PROCESSOUT=$(MISC)$/$(TARGET)
+PROCESSORDIR=$(SOLARBINDIR)
+
+# no validation by inspector class
+NO_INSPECTION=TRUE
+
+# --- Settings ---
+
+.INCLUDE : settings.mk
+
+# no "lib" prefix
+DLLPRE =
+
+# --- Files ---
+
+
+SLOFILES=\
+ $(SLO)$/updatecheck.obj \
+ $(SLO)$/updatecheckconfig.obj \
+ $(SLO)$/updateprotocol.obj
+
+SHL1NOCHECK=TRUE
+SHL1TARGET=$(TARGET).uno
+SHL1OBJS=$(SLOFILES)
+SHL1DEF=$(MISC)$/$(SHL1TARGET).def
+
+SHL1IMPLIB=i$(SHL1TARGET)
+SHL1STDLIBS= \
+ $(CPPUHELPERLIB) \
+ $(CPPULIB) \
+ $(SALLIB)
+
+SHL1VERSIONMAP=..$/exports.map
+SHL1DEF=$(MISC)$/$(SHL1TARGET).def
+DEF1NAME=$(SHL1TARGET)
+
+PACKAGE=org.openoffice.Office
+PACKAGEDIR=$(subst,.,$/ $(PACKAGE))
+SPOOLDIR=$(MISC)$/registry$/spool
+
+XCUFILES= \
+ Addons.xcu \
+ Jobs.xcu
+
+MYXCUFILES= \
+ $(SPOOLDIR)$/$(PACKAGEDIR)$/Addons$/Addons-onlineupdate.xcu \
+ $(SPOOLDIR)$/$(PACKAGEDIR)$/Jobs$/Jobs-onlineupdate.xcu
+
+LOCALIZEDFILES= \
+ Addons.xcu \
+ Jobs.xcu
+
+# --- Targets ---
+
+.INCLUDE : target.mk
+
+ALLTAR : $(MYXCUFILES)
+
+$(SPOOLDIR)$/$(PACKAGEDIR)$/Addons$/Addons-onlineupdate.xcu : $(PROCESSOUT)$/merge$/$(PACKAGEDIR)$/Addons.xcu
+ @$(MKDIRHIER) $(@:d)
+ @+$(COPY) $< $@
+
+$(SPOOLDIR)$/$(PACKAGEDIR)$/Jobs$/Jobs-onlineupdate.xcu : $(PROCESSOUT)$/merge$/$(PACKAGEDIR)$/Jobs.xcu
+ @$(MKDIRHIER) $(@:d)
+ @+$(COPY) $< $@
+