This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-native-launchers.git

commit 06b52bcd9114b7d9426c814e27702440150a8b69
Author: Jaroslav Tulach <jaroslav.tul...@apidesign.org>
AuthorDate: Fri Aug 17 18:39:33 2018 +0200

    Moving new apisupport.harness and o.n.bootstrap files into cluster location
---
 Makefile.mingw | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/Makefile.mingw b/Makefile.mingw
new file mode 100644
index 0000000..4f7d188
--- /dev/null
+++ b/Makefile.mingw
@@ -0,0 +1,34 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+all: app64.exe app.exe
+
+clean:
+       rm -f *.res *.exe
+
+app64.res: app.rc
+       x86_64-w64-mingw32-windres -oapp64.res -Ocoff app.rc
+
+app64.exe: app.cpp applauncher.cpp app64.res 
../../o.n.bootstrap/launcher/windows/utilsfuncs.cpp
+       x86_64-w64-mingw32-gcc -s -DNBEXEC_DLL='"/lib/nbexec64.dll"' 
-DARCHITECTURE=64 -Wl,--nxcompat -Wl,--dynamicbase -Wl,--no-seh app.cpp 
applauncher.cpp app64.res ../../o.n.bootstrap/launcher/windows/utilsfuncs.cpp 
../../ide/launcher/windows/nblauncher.cpp -I 
../../o.n.bootstrap/launcher/windows/ -oapp64.exe -static -lstdc++ 
-static-libstdc++ -static-libgcc
+
+app.res: app.rc
+       i686-w64-mingw32-windres -oapp.res -Ocoff app.rc
+
+app.exe: app.cpp applauncher.cpp app.res 
../../o.n.bootstrap/launcher/windows/utilsfuncs.cpp
+       i686-w64-mingw32-gcc -s -DNBEXEC_DLL='"/lib/nbexec.dll"' 
-DARCHITECTURE=32 -Wl,--nxcompat -Wl,--dynamicbase -Wl,--no-seh app.cpp 
applauncher.cpp app.res ../../o.n.bootstrap/launcher/windows/utilsfuncs.cpp 
../../ide/launcher/windows/nblauncher.cpp -I 
../../o.n.bootstrap/launcher/windows/ -oapp.exe -static -lstdc++ 
-static-libstdc++ -static-libgcc
+

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to