From da729ec6915c0094f111609d9f9b7e46162b8c13 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Sun, 25 Feb 2018 22:46:21 +0000 Subject: adc-power: add parallel parent makefile and fix the bugs it shows from me not maintaining this code! --- tests/adc-power/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/adc-power/Makefile (limited to 'tests/adc-power/Makefile') diff --git a/tests/adc-power/Makefile b/tests/adc-power/Makefile new file mode 100644 index 0000000..52841cd --- /dev/null +++ b/tests/adc-power/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