mato8/Makefile

22 lines
224 B
Makefile
Raw Normal View History

2023-01-10 19:55:27 +00:00
C8ASM ?= c8asm
BIN = mato8.ch8
.SUFFIXES:
.SUFFIXES: .ch8 .asm
.PHONY: All clean distclean test
all: $(BIN)
.asm.ch8:
$(C8ASM) -o $@ $<
clean:
rm -f $(BIN)
distclean: clean
test: $(BIN)
sipsi-8.py $< 900
2023-01-10 19:55:27 +00:00
chip8 $<