mirror of
https://github.com/mist64/perfect6502.git
synced 2025-01-16 10:30:10 +00:00
12 lines
159 B
Makefile
12 lines
159 B
Makefile
|
OBJS=runtime.o plugin.o perfect6502.o console.o
|
||
|
CFLAGS=-Wall -O3
|
||
|
|
||
|
all: cbmbasic
|
||
|
|
||
|
cbmbasic: $(OBJS)
|
||
|
$(CC) -o cbmbasic $(OBJS)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) cbmbasic
|
||
|
|