DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 3a8bd346b71685f93d9f15bfb93e31b4c3cc8eab
parent 9fe07168865ca9ff9a360b0aa4da0ae277125c71
Author: falkTX <falktx@falktx.com>
Date:   Sun, 23 May 2021 19:59:29 +0100

Allow to build tests from root dir

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
MMakefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -52,6 +52,9 @@ else gen: endif +tests: + $(MAKE) -C tests + # -------------------------------------------------------------- clean: @@ -71,4 +74,4 @@ endif # -------------------------------------------------------------- -.PHONY: dgl examples +.PHONY: dgl examples tests