Add Space Invaders background at 3x resolution and 2/3 intensity
[arcade_disasm.git] / Makefile
1 .PHONY: all
2 all: asxv5pxx emu_z80 orig pacman
3
4 .PHONY: asxv5pxx
5 asxv5pxx:
6         ${MAKE} ${MAKEFLAGS} -C $@/asxmak/linux/build asz80 aslink
7
8 .PHONY: emu_z80
9 emu_z80: asxv5pxx
10         ${MAKE} ${MAKEFLAGS} -C $@
11
12 .PHONY: orig
13 orig: asxv5pxx
14         ${MAKE} ${MAKEFLAGS} -C $@
15
16 .PHONY: pacman
17 pacman: asxv5pxx orig
18         ${MAKE} ${MAKEFLAGS} -C $@
19
20 .PHONY: clean
21 clean:
22         ${MAKE} ${MAKEFLAGS} -C asxv5pxx/asxmak/linux/build clean
23         # avoid git complaining of changes in subrepo:
24         touch asxv5pxx/asxmak/linux/exe/_exe
25         ${MAKE} ${MAKEFLAGS} -C emu_z80 clean
26         ${MAKE} ${MAKEFLAGS} -C orig clean
27         ${MAKE} ${MAKEFLAGS} -C pacman clean