1
0
mirror of https://github.com/UzixLS/pacemuzx.git synced 2025-07-19 07:11:20 +03:00

Build system improvements

- 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
This commit is contained in:
Simon Owen
2013-06-03 22:32:49 +01:00
parent d004ed1a85
commit 9f75a8d527
4 changed files with 36 additions and 19 deletions

View File

@ -1,4 +1,6 @@
@echo off
setlocal
set NAME=pacemuzx
if not exist pacman.6e goto missing
if not exist pacman.6f goto missing
@ -15,7 +17,7 @@ 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: pacemuzx.tap
echo Copy them to this directory and re-run to generate: %NAME%.tap
echo.
echo ****************************************************************
echo.
@ -23,8 +25,9 @@ pause
goto end
:got_roms
copy /b start.part+pacman.6e+pacman.6f+pacman.6h+pacman.6j+end.part pacemuzx.tap
copy /b start.part+pacman.6e+pacman.6f+pacman.6h+pacman.6j+end.part %NAME%.tap
start pacemuzx.tap
start %NAME%.tap
:end
endlocal