mirror of
https://github.com/mist64/perfect6502.git
synced 2025-01-22 16:32:51 +00:00
3e60b6dd44
* 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
13 lines
182 B
Makefile
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
|
|
|