1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2025-08-08 18:25:10 +00:00

Don't hardcode ROM names in Makefile.

There's too many of them now, so the names are constructed from the
list of assembly files, automatically.
This commit is contained in:
Radosław Kujawa
2017-01-24 12:36:27 +01:00
parent 09f0a828e3
commit cddba4c56b

View File

@@ -5,17 +5,7 @@ VASM=vasm6502_std
VASMFLAGS=-Fbin -c02 VASMFLAGS=-Fbin -c02
TESTS=test_bus test_emulation TESTS=test_bus test_emulation
TESTROMS=test_emulation_and_imm.rom \ TESTROMS:=$(addsuffix .rom,$(basename $(wildcard *.s)))
test_emulation_clc.rom test_emulation_sec.rom \
test_emulation_dex.rom test_emulation_dey.rom \
test_emulation_inx.rom test_emulation_iny.rom \
test_emulation_pha.rom test_emulation_pla.rom \
test_emulation_php.rom test_emulation_plp.rom \
test_emulation_nop.rom \
test_emulation_lda_imm.rom test_emulation_lda_zp.rom \
test_emulation_lda_abs.rom \
test_emulation_lda_absx.rom test_emulation_lda_absy.rom \
test_emulation_stz_zp.rom
all : $(TESTS) $(TESTROMS) all : $(TESTS) $(TESTROMS)