1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-06-01 10:41:28 +00:00
perfect6502/Makefile
Michael Steil 217ba8f681 rename
2010-10-06 16:34:57 +00:00

15 lines
212 B
Makefile

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