summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@hackbox.linaro.org>2015-11-29 23:02:08 +0000
committerMilosz Wasilewski <milosz.wasilewski@hackbox.linaro.org>2015-11-29 23:02:08 +0000
commitf8a700c636fa74706733014701fbeb1ac660a85d (patch)
tree51d4951dffcf9725c8f7ec74fa0c35562b22567f /firmware/Makefile
parent751dc08e504621a230a1b556abdd2c660953708d (diff)
Update to commit: 8005c49d9aea74d382f474ce11afbbc7d7130bec8005c49d9aea74d382f474ce11afbbc7d7130bec
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