mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-21 08:31:23 +00:00
5 lines
129 B
Makefile
5 lines
129 B
Makefile
|
CC=gcc
|
||
|
emu6502:
|
||
|
$(CC) -o emu6502 *.c
|
||
|
test:
|
||
|
$(CC) -o test test6502.c cpu.c disassembler.c memory.c test_framework.c test_main.c
|