From 3ee8c6f8b9fa35ccd91b74ecb349e635463104c1 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Mon, 16 Apr 2018 23:15:48 +0000 Subject: spi-master-l0: wip: doesn't work, but getting there --- tests/spi-master/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/spi-master/Makefile (limited to 'tests/spi-master/Makefile') 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 + -- cgit