also compile the programs in the util directory by default, not only

do we want to test they can be compiled, but also samples may use/require
them. we might want to install them too, perhaps
This commit is contained in:
mrdudz
2022-02-05 17:28:11 +01:00
parent e0b23258dc
commit bcc03acfc8
5 changed files with 66 additions and 1 deletions

20
util/Makefile Normal file
View File

@@ -0,0 +1,20 @@
.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: