Skip to content

Commit

Permalink
Issue #126: run targets sequentially.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnoel committed Feb 27, 2020
1 parent e74a40a commit e594a31
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion tests/glmmadmb/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 6 additions & 1 deletion tests/rgamma/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e594a31

Please sign in to comment.