1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-06-02 17:41:32 +00:00
perfect6502/Makefile
2010-09-30 02:39:11 +00:00

13 lines
174 B
Makefile

OBJS=runtime.o plugin.o perfect6502.o console.o emu.o
CFLAGS=-Wall -O3
CC=clang
all: cbmbasic
cbmbasic: $(OBJS)
$(CC) -o cbmbasic $(OBJS)
clean:
rm -f $(OBJS) cbmbasic