mirror of
https://github.com/DavidBuchanan314/6502-emu.git
synced 2025-01-27 21:32:51 +00:00
18 lines
238 B
Makefile
18 lines
238 B
Makefile
CFLAGS = -Wall -Ofast -std=gnu99
|
|
LDFLAGS = -Ofast
|
|
|
|
OBJ := 6502-emu.o 6502.o 6850.o
|
|
|
|
all: 6502-emu
|
|
|
|
debug: CFLAGS += -DDEBUG
|
|
debug: 6502-emu
|
|
|
|
6502-emu: $(OBJ)
|
|
|
|
clean:
|
|
$(RM) 6502-emu $(OBJ)
|
|
|
|
test: 6502-emu
|
|
./6502-emu examples/ehbasic.rom
|