diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..391bccf --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +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 \ No newline at end of file diff --git a/makefile b/makefile deleted file mode 100644 index c1c902e..0000000 --- a/makefile +++ /dev/null @@ -1,2 +0,0 @@ -emu6502: - cc *.c -o emu6502 \ No newline at end of file