mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
bcc03acfc8
do we want to test they can be compiled, but also samples may use/require them. we might want to install them too, perhaps
21 lines
367 B
Makefile
21 lines
367 B
Makefile
|
|
.PHONY: atari gamate zlib
|
|
|
|
all: atari gamate zlib
|
|
|
|
atari:
|
|
@$(MAKE) -C atari --no-print-directory $@
|
|
gamate:
|
|
@$(MAKE) -C gamate --no-print-directory $@
|
|
zlib:
|
|
@$(MAKE) -C zlib --no-print-directory $@
|
|
|
|
mostlyclean clean:
|
|
@$(MAKE) -C atari --no-print-directory $@
|
|
@$(MAKE) -C gamate --no-print-directory $@
|
|
@$(MAKE) -C zlib --no-print-directory $@
|
|
|
|
install zip:
|
|
|
|
|