mirror of
https://github.com/mist64/perfect6502.git
synced 2024-12-27 20:29:43 +00:00
13 lines
174 B
Makefile
13 lines
174 B
Makefile
OBJS=perfect6502.o apple1basic.o
|
|
CFLAGS=-Werror -Wall -O3
|
|
CC=clang
|
|
|
|
all: apple1basic
|
|
|
|
apple1basic: $(OBJS)
|
|
$(CC) -o apple1basic $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS) apple1basic
|
|
|