1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-10-20 06:24:16 +00:00
perfect6502/Makefile.apple1basic
Michael Steil 3e60b6dd44 cleanup: moved cbmbasic and apple1basic demos into subdirectories
* also changed "clang" to "cc"
* enabled optimizations for 64 bit (it's 10 years later!)
* updated README to reflect CPU speed in 2020 (5x faster than 2014!)
* added benchmarking instructions to README
2020-06-04 19:32:59 +02:00

13 lines
182 B
Makefile

OBJS=perfect6502.o apple1basic/apple1basic.o
CFLAGS=-Werror -Wall -O3
CC=cc
all: apple1basic
apple1basic: $(OBJS)
$(CC) -o apple1basic $(OBJS)
clean:
rm -f $(OBJS) apple1basic