diff options
author | Karl Palsson <karlp@tweak.net.au> | 2018-04-16 23:15:48 +0000 |
---|---|---|
committer | Karl Palsson <karlp@tweak.net.au> | 2018-04-16 23:15:48 +0000 |
commit | 3ee8c6f8b9fa35ccd91b74ecb349e635463104c1 (patch) | |
tree | a9d3fa0eaa2e6d3df0010cb7bc33f72f2d7f11ca /tests/spi-master/Makefile | |
parent | a62f296f73c4b507890315b7dfb4050bbe872678 (diff) | |
download | olsndot-3ee8c6f8b9fa35ccd91b74ecb349e635463104c1.tar.gz olsndot-3ee8c6f8b9fa35ccd91b74ecb349e635463104c1.tar.bz2 olsndot-3ee8c6f8b9fa35ccd91b74ecb349e635463104c1.zip |
spi-master-l0: wip:
doesn't work, but getting there
Diffstat (limited to 'tests/spi-master/Makefile')
-rw-r--r-- | tests/spi-master/Makefile | 15 |
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 + |