1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-10-20 06:24:16 +00:00
perfect6502/Makefile
Michael Steil 3ef6b7636a cleanup
2010-10-05 16:18:28 +00:00

13 lines
189 B
Makefile

OBJS=runtime.o runtime_init.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