1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-17 20:29:35 +00:00
emu6502/Makefile

5 lines
129 B
Makefile
Raw Permalink Normal View History

2020-04-16 06:20:46 +00:00
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