mirror of
https://github.com/UzixLS/pacemuzx.git
synced 2025-07-18 23:01:36 +03:00

- added 'make run' rule to help with testing - preserved pasmo exit code on Win32 assembly failure - fixed Win32 clean rule so it removes all files cleanly - easier to change target basename
34 lines
790 B
Plaintext
34 lines
790 B
Plaintext
@echo off
|
|
setlocal
|
|
set NAME=pacemuzx
|
|
|
|
if not exist pacman.6e goto missing
|
|
if not exist pacman.6f goto missing
|
|
if not exist pacman.6h goto missing
|
|
if not exist pacman.6j goto missing
|
|
goto got_roms
|
|
|
|
:missing
|
|
echo.
|
|
echo ****************************************************************
|
|
echo.
|
|
echo The Pac-Man ROMs can't be distributed with this program, so you
|
|
echo must provide your own copies of:
|
|
echo.
|
|
echo pacman.6e pacman.6f pacman.6h pacman.6j
|
|
echo.
|
|
echo Copy them to this directory and re-run to generate: %NAME%.tap
|
|
echo.
|
|
echo ****************************************************************
|
|
echo.
|
|
pause
|
|
goto end
|
|
|
|
:got_roms
|
|
copy /b start.part+pacman.6e+pacman.6f+pacman.6h+pacman.6j+end.part %NAME%.tap
|
|
|
|
start %NAME%.tap
|
|
|
|
:end
|
|
endlocal
|