1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-06-08 12:29:28 +00:00
perfect6502/Makefile

15 lines
231 B
Makefile
Raw Normal View History

2010-10-06 16:33:26 +00:00
OBJS=perfect6502.o
2010-10-07 00:28:02 +00:00
OBJS+=cbmbasic.o runtime.o runtime_init.o plugin.o console.o emu.o
2010-10-06 16:53:40 +00:00
#OBJS+=measure.o
CFLAGS=-Werror -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