summaryrefslogtreecommitdiff
path: root/tests/spi-master/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spi-master/Makefile')
-rw-r--r--tests/spi-master/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/spi-master/Makefile b/tests/spi-master/Makefile
new file mode 100644
index 0000000..52841cd
--- /dev/null
+++ b/tests/spi-master/Makefile
@@ -0,0 +1,15 @@
+# This is just a stub makefile used for travis builds
+# to keep things all compiling. Normally you'd use
+# one of the makefiles directly.
+
+# These hoops are to enable parallel make correctly.
+GZ_ALL := $(wildcard Makefile.*)
+
+all: $(GZ_ALL:=.all)
+clean: $(GZ_ALL:=.clean)
+
+%.all:
+ make -f $* all
+%.clean:
+ make -f $* clean
+