blob: 382bdc56642e11e8f29f6ae4eb5b0da74e5aa451 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@echo off
@rem set MINGW64=C:\Mingw\11-2-0\mingw64
set MINGW64=C:\Mingw\13-2\mingw64
set minpath=%MINGW64%\bin
set oldpath=%Path%
set Path=%minpath%;%oldpath%
echo.|time
%MINGW64%\bin\make PTR64=1 TARGET=hbmame SYMBOLS=0 NO_SYMBOLS=1 DEPRECATED=0 %1 %2 %3 %4
echo.|time
set Path=%oldpath%
set oldpath=
if exist hbmame.exe %minpath%\strip -s hbmame.exe
if exist hbmameui.exe %minpath%\strip -s hbmameui.exe
set minpath=
|