1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-10-21 12:23:59 +00:00
perfect6502/Makefile

13 lines
168 B
Makefile
Raw Normal View History

2010-09-22 10:05:49 +00:00
OBJS=runtime.o plugin.o perfect6502.o console.o
CFLAGS=-Wall -O3
CC=clang
2010-09-22 10:05:49 +00:00
all: cbmbasic
cbmbasic: $(OBJS)
$(CC) -o cbmbasic $(OBJS)
clean:
rm -f $(OBJS) cbmbasic