Skip to content

Commit

Permalink
refactoring makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
sijskes committed Oct 7, 2016
1 parent b9edd6c commit b47c8b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ doflash: applets
all_images:
$(MAKE) -C applet ci

ci: clean
download:
$(MAKE) -C firmware download

ci: clean download
$(MAKE) -C applet ci
$(MAKE) -C db ci
$(MAKE) data
Expand Down
4 changes: 2 additions & 2 deletions ci-script.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -e errexit #otherwise bash continues after error!
#make -C applet ci
cd firmware ; ./test.sh
make ci
#cd firmware ; ./test.sh

0 comments on commit b47c8b8

Please sign in to comment.