Allow to build samples from the main Makefile.

This commit is contained in:
Oliver Schmidt 2016-06-12 22:54:23 +02:00
parent 4fc27ffc98
commit 524813ff60
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
.PHONY: all mostlyclean clean install zip avail unavail bin lib doc
.PHONY: all mostlyclean clean install zip avail unavail bin lib doc samples
.SUFFIXES:
@ -17,6 +17,9 @@ lib:
doc:
@$(MAKE) -C doc --no-print-directory $@
samples:
@$(MAKE) -C samples --no-print-directory $@
%65:
@$(MAKE) -C src --no-print-directory $@