Allow to build just the binaries or just the libraries from the top level Makefile.

This commit is contained in:
Oliver Schmidt
2013-05-07 17:49:35 +02:00
parent 5ddf9e0878
commit 969c3b7488
3 changed files with 11 additions and 8 deletions

View File

@@ -2,15 +2,18 @@ all mostlyclean clean:
@$(MAKE) -C src --no-print-directory $@
@$(MAKE) -C libsrc --no-print-directory $@
install uninstall:
install uninstall bin:
@$(MAKE) -C src --no-print-directory $@
lib:
@$(MAKE) -C libsrc --no-print-directory $@
%65:
@$(MAKE) -C src --no-print-directory $@
%:
@$(MAKE) -C libsrc --no-print-directory $@
.PHONY: all mostlyclean clean install uninstall
.PHONY: all mostlyclean clean install uninstall bin lib
.SUFFIXES: