mv -f ../config.h ../config.h.orig
fi
qmake -spec win32 -unix -o Makefile.mingw32 bat.pro.mingw32
+echo "Make Windows bat"
make -j3 -f Makefile.mingw32 $1
if test -e ../config.h.orig ; then
mv -f ../config.h.orig ../config.h
fi
cd tray-monitor
+rm -f release/bacula-tray-monitor.exe debug/bacula-tray-monitor.exe
qmake -spec ../win32 -unix -o Makefile.mingw32 tray-monitor.pro
+echo "Make Windows tray-monitor"
make -j3 -f Makefile.mingw32 $1
if test -f release/bacula-tray-monitor.exe; then
- cp -f release/bacula-tray-monitor.exe ../../win32/release32
+ cp -f release/bacula-tray-monitor.exe ../../win32/release32
else
- cp -f debug/bacula-tray-monitor.exe ../../win32/release32
+ cp -f debug/bacula-tray-monitor.exe ../../win32/release32
fi
cd ..