mato8/Makefile
2023-01-14 22:43:25 +02:00

21 lines
224 B
Makefile

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
chip8 $<