Added 'install' target.

The 'install' target primarily aims to support pacaking tools. Therefore...
- It just presumes a "capable" install program to be present.
- There's intentionally no 'uninstall' target.
This commit is contained in:
Oliver Schmidt
2014-01-29 21:42:26 +01:00
parent 4452156d1a
commit e320fe3db8
3 changed files with 42 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
all mostlyclean clean:
all mostlyclean clean install:
@$(MAKE) -C src --no-print-directory $@
@$(MAKE) -C libsrc --no-print-directory $@
@@ -14,6 +14,6 @@ lib:
%:
@$(MAKE) -C libsrc --no-print-directory $@
.PHONY: all mostlyclean clean avail unavail bin lib
.PHONY: all mostlyclean clean install avail unavail bin lib
.SUFFIXES: