diff options
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 + |