mirror of
https://github.com/daniel5151/ANESE.git
synced 2025-04-02 10:32:00 -04:00
12 lines
346 B
Makefile
Executable file
Vendored
12 lines
346 B
Makefile
Executable file
Vendored
all: ../test_cpu_flag_concurrency.nes
|
|
|
|
#####
|
|
../test_cpu_flag_concurrency.nes: test_cpu_flag_concurrency.o
|
|
ld65 -o $@ $^ -v -C nes.cfg
|
|
|
|
test_cpu_flag_concurrency.o: test_cpu_flag_concurrency.s
|
|
ca65 --smart -o $@ $^ -t nes -v -I common -DCUSTOM_IRQ -DCUSTOM_NMI
|
|
|
|
#####
|
|
clean:
|
|
rm -f test_cpu_flag_concurrency.o ../test_cpu_flag_concurrency.nes
|