mirror of
https://github.com/UzixLS/pacemuzx.git
synced 2025-07-19 07:11:20 +03:00
pacemuzx v1.0
This commit is contained in:
29
make.bat
Normal file
29
make.bat
Normal file
@ -0,0 +1,29 @@
|
||||
@echo off
|
||||
|
||||
if "%1"=="clean" goto clean
|
||||
|
||||
png2bin.pl tiles.png 6
|
||||
png2bin.pl sprites.png 12
|
||||
|
||||
pasmo --tap pacemuzx.asm pacemuzx.o
|
||||
|
||||
copy /b loader.tap+pacemuzx.o pacemuzx.tap
|
||||
|
||||
if not "%1"=="dist" goto end
|
||||
|
||||
if not exist dist mkdir dist
|
||||
copy ReadMe.txt dist\
|
||||
copy Makefile-dist dist\Makefile
|
||||
copy make.bat-dist dist\make.bat
|
||||
remove_rom.pl
|
||||
move start.part dist\
|
||||
move end.part dist\
|
||||
goto end
|
||||
|
||||
:clean
|
||||
if exist pacemuzx.tap del pacemuzx.tap pacemuzx.sym pacemuzx.o
|
||||
if exist tiles.bin del tiles.bin sprites.bin
|
||||
if exist dist\ del dist\Makefile dist\make.bat dist\start.part dist\end.part dist\pacemuzx.tap
|
||||
if exist dist\ rmdir dist
|
||||
|
||||
:end
|
Reference in New Issue
Block a user