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.
15 lines
154 B
Makefile
15 lines
154 B
Makefile
12 years ago
|
CC = bin/cc65
|
||
|
AS = bin/ca65
|
||
|
LD = bin/ld65
|
||
|
export CPU = 65c02
|
||
|
|
||
|
.PHONY: all
|
||
|
all: lib test
|
||
|
|
||
|
.PHONY: test
|
||
|
test:
|
||
|
make -C test/
|
||
|
|
||
|
.PHONY: lib
|
||
|
lib:
|
||
|
make -C lib/
|