summaryrefslogtreecommitdiff
path: root/sysui/desktop/macosx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-02-12 12:30:47 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-02-12 12:30:47 +0000
commit9b6f7bf20eff50b3b552941171f0a92d1538ff2b (patch)
tree9557758f9059642f150200699db704eefeeff031 /sysui/desktop/macosx
parent1374c883470c6abc1ca6f4c1035bb1528fddb57c (diff)
INTEGRATION: CWS obr07 (1.1.2); FILE ADDED
2008/02/06 21:03:07 obr 1.1.2.5: XML::Parser not a default module on OSX 2008/02/05 09:24:48 obr 1.1.2.4: #i85858# added extended version info and removed non-existing chart document type 2008/01/25 13:40:18 obr 1.1.2.3: only package the icons referenced in Info.plist 2008/01/25 10:46:39 obr 1.1.2.2: moved Info.plist to sysui/desktop/macosx 2008/01/24 08:09:02 obr 1.1.2.1: moved MacOS X desktop intergration icons to sysui beside those for the other platforms and renamed them
Diffstat (limited to 'sysui/desktop/macosx')
-rw-r--r--sysui/desktop/macosx/makefile.mk83
1 files changed, 83 insertions, 0 deletions
diff --git a/sysui/desktop/macosx/makefile.mk b/sysui/desktop/macosx/makefile.mk
new file mode 100644
index 000000000000..3dfc0c72740b
--- /dev/null
+++ b/sysui/desktop/macosx/makefile.mk
@@ -0,0 +1,83 @@
+#*************************************************************************
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# $RCSfile: makefile.mk,v $
+#
+# 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=..$/..
+TARGET=desktopmacosx
+
+# --- Settings -------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Files ----------------------------------------------------
+
+.IF "$(OS)"!="MACOSX"
+
+dummy:
+ @echo "Nothing to build for OS $(OS)"
+
+.ELSE # "$(OS)"!="MACOSX"
+
+ZIPFLAGS = -r
+ZIP1TARGET = osxicons
+ZIP1DIR = ../icons
+ZIP1LIST := $(shell $(PERL) list_icons.pl < Info.plist)
+
+.IF "$(GUIBASE)"!="aqua"
+CREATOR_TYPE=OOo2
+EXECUTABLE=droplet
+.ELSE
+CREATOR_TYPE=OOO2
+EXECUTABLE=soffice.bin
+.ENDIF
+
+SOURCE=$(RSCREVISION)
+
+.IF "$(CWS_WORK_STAMP)" != ""
+CWS=[CWS:$(CWS_WORK_STAMP)]
+.ENDIF
+
+# --- Targets --------------------------------------------------
+
+.INCLUDE : target.mk
+
+ZIP1TARGETN : Info.plist extract_icons_names.pl
+
+ALLTAR : $(COMMONMISC)$/{PkgInfo Info.plist}
+
+$(COMMONMISC)$/PkgInfo :
+ echo "APPL$(CREATOR_TYPE)" > $@
+
+
+$(COMMONMISC)$/Info.plist : $$(@:f)
+ sed -e "s|\%EXECUTABLE|${EXECUTABLE}|g" -e "s|\%SOURCE|[$(SOURCE)$(CWS)]|g" $< > $@
+
+.ENDIF # "$(OS)"!="MACOSX"
+