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.
21 lines
275 B
Makefile
21 lines
275 B
Makefile
12 years ago
|
AR = ../bin/ar65
|
||
|
export CPU = 65c02
|
||
|
|
||
|
|
||
|
#.PHONY: all
|
||
|
all: rpc8e.lib
|
||
|
|
||
|
rpc8e.lib: runtime common rpc8e
|
||
|
rm -f rpc8e.lib
|
||
|
$(AR) a rpc8e.lib runtime/*.o rpc8e/*.o common/*.o
|
||
|
|
||
|
.PHONY: runtime rpc8e common
|
||
|
|
||
|
rpc8e:
|
||
|
make -C rpc8e/
|
||
|
|
||
|
runtime:
|
||
|
make -C runtime/
|
||
|
|
||
|
common:
|
||
|
make -C common/
|