summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@hackbox.linaro.org>2015-11-15 23:02:29 +0000
committerMilosz Wasilewski <milosz.wasilewski@hackbox.linaro.org>2015-11-15 23:02:29 +0000
commit88998027f6be359706650d48d2bec705e2672962 (patch)
treedcc6549d5797521553990dd1cd7a390bbbb39a92 /firmware/Makefile
parent751dc08e504621a230a1b556abdd2c660953708d (diff)
Update to commit: 6a13feb9c82803e2b815eca72fa7a9f5561d78616a13feb9c82803e2b815eca72fa7a9f5561d7861
from repo: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git branch: master
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile20
1 files changed, 2 insertions, 18 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index e23cce0..9bf8223 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -3,25 +3,9 @@
# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
all:
-fw_filesystem:
- @if /bin/sh ./fw_filesystem.sh ; then \
- echo "fw_filesystem: ok"; \
- else \
- echo "fw_filesystem: [FAIL]"; \
- exit 1; \
- fi
+TEST_PROGS := fw_filesystem.sh fw_userhelper.sh
-fw_userhelper:
- @if /bin/sh ./fw_userhelper.sh ; then \
- echo "fw_userhelper: ok"; \
- else \
- echo "fw_userhelper: [FAIL]"; \
- exit 1; \
- fi
-
-run_tests: all fw_filesystem fw_userhelper
+include ../lib.mk
# Nothing to clean up.
clean:
-
-.PHONY: all clean run_tests fw_filesystem fw_userhelper