1
0
mirror of https://github.com/jborza/emu6502.git synced 2025-08-05 16:25:02 +00:00
Files
emu6502/Makefile
2020-04-16 08:20:46 +02:00

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