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 98bc021c5a
commit afe9d6a2eb
5 changed files with 66 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: all mostlyclean clean install zip avail unavail bin lib doc html info samples test
.PHONY: all mostlyclean clean install zip avail unavail bin lib doc html info samples test util
.SUFFIXES:
@@ -7,6 +7,7 @@ all mostlyclean clean install zip:
@$(MAKE) -C libsrc --no-print-directory $@
@$(MAKE) -C doc --no-print-directory $@
@$(MAKE) -C samples --no-print-directory $@
@$(MAKE) -C util --no-print-directory $@
avail unavail bin:
@$(MAKE) -C src --no-print-directory $@
@@ -23,6 +24,9 @@ samples:
test:
@$(MAKE) -C test --no-print-directory $@
util:
@$(MAKE) -C util --no-print-directory $@
%65:
@$(MAKE) -C src --no-print-directory $@