You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CC = bin/cc65
|
|
AS = bin/ca65
|
|
LD = bin/ld65
|
|
export CPU = 65c02
|
|
|
|
.PHONY: all
|
|
all: lib test
|
|
|
|
.PHONY: test
|
|
test:
|
|
make -C test/
|
|
|
|
.PHONY: astoria
|
|
make -C astoriaTest/
|
|
|
|
.PONY: iox
|
|
iox:
|
|
make -C IOX/
|
|
|
|
.PONY: ioxtest
|
|
ioxtest:
|
|
make -C IOX/ test
|
|
|
|
|
|
.PHONY: lib
|
|
lib:
|
|
make -C lib/
|