summaryrefslogtreecommitdiff
path: root/setup_native
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-07-23 14:06:02 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-07-23 14:06:42 +0200
commit4e7cfbfaedc747a9c7bfabf891897d36b741a765 (patch)
treecc475c484a5c87ed0153ece624f3390c8733c685 /setup_native
parent84546683fd91ca211063f7ee39df96958ede9041 (diff)
Eventually build the lanedo msi* tools soon
Change-Id: Ie8174ae4b7d2c02503f40fe1263076d924f2c9e2
Diffstat (limited to 'setup_native')
-rw-r--r--setup_native/prj/build.lst5
-rw-r--r--setup_native/source/win32/wintools/makecab/makefile.mk32
-rw-r--r--setup_native/source/win32/wintools/msidb/makefile.mk32
-rw-r--r--setup_native/source/win32/wintools/msiinfo/makefile.mk32
-rw-r--r--setup_native/source/win32/wintools/msimsp/makefile.mk32
-rw-r--r--setup_native/source/win32/wintools/msitran/makefile.mk32
6 files changed, 165 insertions, 0 deletions
diff --git a/setup_native/prj/build.lst b/setup_native/prj/build.lst
index d8ebf5934dac..fbdbb4f87839 100644
--- a/setup_native/prj/build.lst
+++ b/setup_native/prj/build.lst
@@ -16,3 +16,8 @@ pk setup_native\source\win32\customactions\shellextensions nmake - w sn_sh
pk setup_native\source\win32\customactions\indexingfilter nmake - w sn_indexingfilter NULL
pk setup_native\source\win32\customactions\languagepacks nmake - w sn_languagepacks sn_shellextensions.w sn_tools.w NULL
pk setup_native\source\win32\customactions\patch nmake - w sn_patch sn_languagepacks.w sn_shellextensions.w sn_quickstarter.w sn_tools.w NULL
+pk setup_native\source\win32\wintools\makecab nmake - u sn_makecab NULL
+pk setup_native\source\win32\wintools\msidb nmake - u sn_msidb NULL
+pk setup_native\source\win32\wintools\msiinfo nmake - u sn_msiinfo NULL
+pk setup_native\source\win32\wintools\msimsp nmake - u sn_msimsp NULL
+pk setup_native\source\win32\wintools\msitran nmake - u sn_msitrans NULL
diff --git a/setup_native/source/win32/wintools/makecab/makefile.mk b/setup_native/source/win32/wintools/makecab/makefile.mk
new file mode 100644
index 000000000000..c8fee10c0215
--- /dev/null
+++ b/setup_native/source/win32/wintools/makecab/makefile.mk
@@ -0,0 +1,32 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+PRJ=..$/..$/..$/..
+PRJNAME=setup_native
+TARGET=sn_makecab
+
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Files --------------------------------------------------------
+
+.IF "$(WINEGCC)"==""
+@all:
+ @echo "No winegcc present, not building makecab..."
+.ELSE
+@all:
+ @echo "Not building makecab yet, stay tuned..."
+.ENDIF
+
+# --- Targets --------------------------------------------------------------
+
+.INCLUDE : target.mk
+
+# -------------------------------------------------------------------------
diff --git a/setup_native/source/win32/wintools/msidb/makefile.mk b/setup_native/source/win32/wintools/msidb/makefile.mk
new file mode 100644
index 000000000000..2bb31bc0a5a4
--- /dev/null
+++ b/setup_native/source/win32/wintools/msidb/makefile.mk
@@ -0,0 +1,32 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+PRJ=..$/..$/..$/..
+PRJNAME=setup_native
+TARGET=sn_msidb
+
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Files --------------------------------------------------------
+
+.IF "$(WINEGCC)"==""
+@all:
+ @echo "No winegcc present, not building msidb..."
+.ELSE
+@all:
+ @echo "Not building msidb yet, stay tuned..."
+.ENDIF
+
+# --- Targets --------------------------------------------------------------
+
+.INCLUDE : target.mk
+
+# -------------------------------------------------------------------------
diff --git a/setup_native/source/win32/wintools/msiinfo/makefile.mk b/setup_native/source/win32/wintools/msiinfo/makefile.mk
new file mode 100644
index 000000000000..62e09b5dc4ad
--- /dev/null
+++ b/setup_native/source/win32/wintools/msiinfo/makefile.mk
@@ -0,0 +1,32 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+PRJ=..$/..$/..$/..
+PRJNAME=setup_native
+TARGET=sn_msiinfo
+
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Files --------------------------------------------------------
+
+.IF "$(WINEGCC)"==""
+@all:
+ @echo "No winegcc present, not building msiinfo..."
+.ELSE
+@all:
+ @echo "Not building msiinfo yet, stay tuned..."
+.ENDIF
+
+# --- Targets --------------------------------------------------------------
+
+.INCLUDE : target.mk
+
+# -------------------------------------------------------------------------
diff --git a/setup_native/source/win32/wintools/msimsp/makefile.mk b/setup_native/source/win32/wintools/msimsp/makefile.mk
new file mode 100644
index 000000000000..4d6663c30fd1
--- /dev/null
+++ b/setup_native/source/win32/wintools/msimsp/makefile.mk
@@ -0,0 +1,32 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+PRJ=..$/..$/..$/..
+PRJNAME=setup_native
+TARGET=sn_msimsp
+
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Files --------------------------------------------------------
+
+.IF "$(WINEGCC)"==""
+@all:
+ @echo "No winegcc present, not building msimsp..."
+.ELSE
+@all:
+ @echo "Not building msimsp yet, stay tuned..."
+.ENDIF
+
+# --- Targets --------------------------------------------------------------
+
+.INCLUDE : target.mk
+
+# -------------------------------------------------------------------------
diff --git a/setup_native/source/win32/wintools/msitran/makefile.mk b/setup_native/source/win32/wintools/msitran/makefile.mk
new file mode 100644
index 000000000000..c22c9d17e4b6
--- /dev/null
+++ b/setup_native/source/win32/wintools/msitran/makefile.mk
@@ -0,0 +1,32 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+PRJ=..$/..$/..$/..
+PRJNAME=setup_native
+TARGET=sn_msitran
+
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Files --------------------------------------------------------
+
+.IF "$(WINEGCC)"==""
+@all:
+ @echo "No winegcc present, not building msitran..."
+.ELSE
+@all:
+ @echo "Not building msitran yet, stay tuned..."
+.ENDIF
+
+# --- Targets --------------------------------------------------------------
+
+.INCLUDE : target.mk
+
+# -------------------------------------------------------------------------