X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a3b4583a9d64feae07d3eefbc720a425e099880c..3f7f284d555df50912037296c5d74a2911975bce:/wxPython/distrib/msw/.make diff --git a/wxPython/distrib/msw/.make b/wxPython/distrib/msw/.make index 6d68c46199..3625f944e5 100644 --- a/wxPython/distrib/msw/.make +++ b/wxPython/distrib/msw/.make @@ -1,5 +1,6 @@ -#! /bin/bash +#!/bin/bash +# set -o xtrace function error { echo ----------------- @@ -82,45 +83,45 @@ echo ------------------ echo cd $WXWIN/build/msw cd $WXWIN/build/msw nmake -f .makesetup.mk $WXWIN/lib/vc_dll/$WXLIBDIR/wx/setup.h - +if [ ! $? = 0 ]; then error 2; fi echo ------------------ echo cd $WXWIN/build/msw cd $WXWIN/build/msw $WXWIN/build/msw/.mymake $BUILD_TYPE $@ -if [ ! $? = 0 ]; then error; fi +if [ ! $? = 0 ]; then error 2; fi echo ------------------ echo cd ../../contrib/build/gizmos cd ../../contrib/build/gizmos $WXWIN/build/msw/.mymake $BUILD_TYPE $@ -if [ ! $? = 0 ]; then error; fi +if [ ! $? = 0 ]; then error 2; fi cd - -echo ------------------ -echo cd ../../contrib/build/xrc -cd ../../contrib/build/xrc -$WXWIN/build/msw/.mymake $BUILD_TYPE $@ -if [ ! $? = 0 ]; then error; fi -cd - +# echo ------------------ +# echo cd ../../contrib/build/animate +# cd ../../contrib/build/animate +# $WXWIN/build/msw/.mymake $BUILD_TYPE $@ +# if [ ! $? = 0 ]; then error 2; fi +# cd - echo ------------------ echo cd ../../contrib/build/stc cd ../../contrib/build/stc $WXWIN/build/msw/.mymake $BUILD_TYPE $@ -if [ ! $? = 0 ]; then error; fi +if [ ! $? = 0 ]; then error 2; fi cd - -echo ------------------ -echo cd ../../contrib/build/ogl -cd ../../contrib/build/ogl -$WXWIN/build/msw/.mymake $BUILD_TYPE CPPFLAGS="-DwxUSE_DEPRECATED=0" $@ -if [ ! $? = 0 ]; then error; fi -cd - +# echo ------------------ +# echo cd ../../contrib/build/ogl +# cd ../../contrib/build/ogl +# $WXWIN/build/msw/.mymake $BUILD_TYPE CPPFLAGS="-DwxUSE_DEPRECATED=0" $@ +# if [ ! $? = 0 ]; then error 2; fi +# cd -