1
0
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:
Simon Owen
2011-11-08 23:49:42 +00:00
commit 9f263276fe
14 changed files with 2937 additions and 0 deletions

30
Makefile Normal file
View File

@ -0,0 +1,30 @@
TAPE=pacemuzx.tap
ROMS=pacman.6e pacman.6f pacman.6h pacman.6j
.PHONY: dist clean
$(TAPE): loader.tap pacemuzx.o
cat loader.tap pacemuzx.o > $@
tiles.bin: tiles.png
./png2bin.pl $< 6
sprites.bin: sprites.png
./png2bin.pl $< 12
pacemuzx.o: pacemuzx.asm tiles.bin sprites.bin $(ROMS)
pasmo --tap pacemuzx.asm pacemuzx.o pacman.sym
dist: $(TAPE)
rm -rf dist
mkdir dist
cp ReadMe.txt dist/
cp Makefile-dist dist/Makefile
cp make.bat-dist dist/make.bat
./remove_rom.pl $(TAPE)
mv start.part end.part dist/
clean:
rm -f $(TAPE) pacemuzx.sym pacemuzx.o
rm -f tiles.bin sprites.bin start.part end.part
rm -rf dist