diff options
author | Karl Palsson <karlp@tweak.net.au> | 2018-02-25 22:50:09 +0000 |
---|---|---|
committer | Karl Palsson <karlp@tweak.net.au> | 2018-02-25 22:50:09 +0000 |
commit | d339255511a4491f560636b9515b51d504d79c11 (patch) | |
tree | 7944a723662398f3df6727ead0bd9af72128e1a9 /tests/i2c-master/Makefile | |
parent | da729ec6915c0094f111609d9f9b7e46162b8c13 (diff) | |
download | olsndot-d339255511a4491f560636b9515b51d504d79c11.tar.gz olsndot-d339255511a4491f560636b9515b51d504d79c11.tar.bz2 olsndot-d339255511a4491f560636b9515b51d504d79c11.zip |
i2c-master: add parallel make and fix errors
Fix bugs from outof date libopencm3
Diffstat (limited to 'tests/i2c-master/Makefile')
-rw-r--r-- | tests/i2c-master/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/i2c-master/Makefile b/tests/i2c-master/Makefile new file mode 100644 index 0000000..52841cd --- /dev/null +++ b/tests/i2c-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 + |