You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
362 B
Makefile
17 lines
362 B
Makefile
# Tiny Makefile that does the job
|
|
|
|
emu6502: *.c
|
|
$(CC) -Wall -DEMU6502_TESTING -std=c99 opcodes.c -o emu6502
|
|
|
|
.PHONY: run test apple1
|
|
|
|
# Builds the Apple I Emulator
|
|
apple1:
|
|
$(CC) -Wall -std=c99 *.c -o a1emu
|
|
|
|
# You need to get the binary from the git repo
|
|
# TODO: Provide link
|
|
test: emu6502
|
|
./emu6502 6502test.bin > bad_dump.txt
|
|
./testscript.py < bad_dump.txt
|