Skip to content

Commit

Permalink
fix(spasht): Fixed make file error
Browse files Browse the repository at this point in the history
Signed-off-by: vivek kumar <vvksindia@gmail.com>
  • Loading branch information
viv9k authored and GMishx committed Oct 3, 2019
1 parent 1609030 commit 269820b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/spasht/Makefile
Expand Up @@ -13,15 +13,15 @@ include $(VARS)
MOD_NAMES = spasht

DIRS = ui
TESTDIR = agent_tests
# TESTDIR = agent_tests

DIR_LOOP = @set -e; for dir in $(DIRS); do $(MAKE) -s -C $$dir $(1); done

all: VERSIONFILE
$(call DIR_LOOP, )

test: all
$(MAKE) -C $(TESTDIR) test
# test: all
# $(MAKE) -C $(TESTDIR) test

coverage: all
$(MAKE) -C $(TESTDIR) coverage
Expand Down Expand Up @@ -51,7 +51,7 @@ uninstall:

clean:
$(call DIR_LOOP,clean)
$(MAKE) -s -C $(TESTDIR) $@
# $(MAKE) -s -C $(TESTDIR) $@
rm -f VERSION*

.PHONY: all test coverage VERSIONFILE install uninstall clean

0 comments on commit 269820b

Please sign in to comment.