From 9c1afb3a0c21c40c7ed8feae0d614322e08e8e68 Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 13 May 2020 18:18:31 +0200 Subject: [PATCH] add template to tests Makefile --- test/java/foundation/pEp/jniadapter/test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/java/foundation/pEp/jniadapter/test/Makefile b/test/java/foundation/pEp/jniadapter/test/Makefile index c5ac816..2b79d27 100644 --- a/test/java/foundation/pEp/jniadapter/test/Makefile +++ b/test/java/foundation/pEp/jniadapter/test/Makefile @@ -3,6 +3,7 @@ all: compile run: compile + $(MAKE) -C template run $(MAKE) -C basic run $(MAKE) -C regression run #BROKEN $(MAKE) -C jni85 run @@ -12,6 +13,7 @@ run: compile $(MAKE) -C jni94 run compile: + $(MAKE) -C template compile $(MAKE) -C basic compile $(MAKE) -C regression compile #BROKEN $(MAKE) -C jni85 compile @@ -21,6 +23,7 @@ compile: $(MAKE) -C jni94 compile clean: + $(MAKE) -C template clean $(MAKE) -C basic clean $(MAKE) -C regression clean $(MAKE) -C jni85 clean