From e594a31536aa28ed7d345d9d1440a8667b34cbfe Mon Sep 17 00:00:00 2001 From: johnoel Date: Thu, 27 Feb 2020 09:55:51 -1000 Subject: [PATCH] Issue #126: run targets sequentially. --- tests/glmmadmb/GNUmakefile | 5 ++++- tests/rgamma/GNUmakefile | 7 ++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/glmmadmb/GNUmakefile b/tests/glmmadmb/GNUmakefile index e55a10ccf..53f8c7756 100644 --- a/tests/glmmadmb/GNUmakefile +++ b/tests/glmmadmb/GNUmakefile @@ -15,7 +15,10 @@ all: rforge-glmmadmb ifeq ($(CMDSHELL),cmd) $(MAKE) --file=Makefile all else - $(MAKE) glmmadmb nbmm bvprobit admb_tests + $(MAKE) glmmadmb + $(MAKE) nbmm + $(MAKE) bvprobit + $(MAKE) admb_tests $(MAKE) run endif diff --git a/tests/rgamma/GNUmakefile b/tests/rgamma/GNUmakefile index d87525704..82784087b 100644 --- a/tests/rgamma/GNUmakefile +++ b/tests/rgamma/GNUmakefile @@ -11,7 +11,12 @@ ifeq ($(OS),Windows_NT) endif endif -all: gamm1 testgamm +all: clean + $(MAKE) gamm1 + $(MAKE) testgamm + $(MAKE) run + +run: ifeq ($(CMDSHELL),cmd) gamm1 testgamm