summaryrefslogtreecommitdiff
path: root/ure/source
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2005-05-26 09:00:14 +0000
committerStephan Bergmann <sb@openoffice.org>2005-05-26 09:00:14 +0000
commitd8c210e714b6f35612a198deca64ebd02b227ed5 (patch)
treeba6fe37290284d1a979a4ef3203325268ece1d76 /ure/source
parent8a31d56bee3d7543957381867179eb0d1658996d (diff)
#121392# New ure module for URE-specific files; Windows-specific ini files.
Diffstat (limited to 'ure/source')
-rw-r--r--ure/source/makefile.mk105
1 files changed, 105 insertions, 0 deletions
diff --git a/ure/source/makefile.mk b/ure/source/makefile.mk
new file mode 100644
index 000000000000..440ccfec59be
--- /dev/null
+++ b/ure/source/makefile.mk
@@ -0,0 +1,105 @@
+#*************************************************************************
+#
+# $RCSfile: makefile.mk,v $
+#
+# $Revision: 1.1 $
+#
+# last change: $Author: sb $ $Date: 2005-05-26 10:00:14 $
+#
+# 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: 2005 by Sun Microsystems, Inc.
+#
+# All Rights Reserved.
+#
+# Contributor(s): _______________________________________
+#
+#
+#*************************************************************************
+
+PRJ := ..
+PRJNAME := ure
+TARGET := $(PRJNAME)
+
+.INCLUDE: settings.mk
+
+.IF "$(OS)" == "WNT"
+MY_RC = .ini
+.ELSE
+MY_RC = rc
+.ENDIF
+
+ZIP1TARGET = uretest
+ZIP1FLAGS = -r
+ZIP1LIST = uretest
+
+.INCLUDE: target.mk
+
+ALLTAR: \
+ $(BIN)$/ure$/README \
+ $(BIN)$/ure$/jvmfwk3$(MY_RC) \
+ $(BIN)$/ure$/uno$(MY_RC)
+
+$(BIN)$/ure$/README: README
+ - $(MKDIR) $(@:d)
+ + $(COPY) $< $@
+
+$(BIN)$/ure$/jvmfwk3$(MY_RC): jvmfwk3$(MY_RC)
+ - $(MKDIR) $(@:d)
+ + $(COPY) $< $@
+
+$(BIN)$/ure$/uno$(MY_RC): uno$(MY_RC)
+ - $(MKDIR) $(@:d)
+ + $(COPY) $< $@
+
+.IF "$(OS)" != "WNT"
+
+ALLTAR: $(BIN)$/ure$/startup.sh
+
+$(BIN)$/ure$/startup.sh: startup.sh
+ - $(MKDIR) $(@:d)
+ + $(COPY) $< $@
+
+.ENDIF