summaryrefslogtreecommitdiff
path: root/tests/adc-power/Makefile
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2018-02-25 22:46:21 +0000
committerKarl Palsson <karlp@tweak.net.au>2018-02-25 22:46:21 +0000
commitda729ec6915c0094f111609d9f9b7e46162b8c13 (patch)
tree43488e4cec0ed4cc148c7227dc0eabc36e04f405 /tests/adc-power/Makefile
parent9d0983c38662358d9f509487ea9b85cec8480475 (diff)
downloadolsndot-da729ec6915c0094f111609d9f9b7e46162b8c13.tar.gz
olsndot-da729ec6915c0094f111609d9f9b7e46162b8c13.tar.bz2
olsndot-da729ec6915c0094f111609d9f9b7e46162b8c13.zip
adc-power: add parallel parent makefile
and fix the bugs it shows from me not maintaining this code!
Diffstat (limited to 'tests/adc-power/Makefile')
-rw-r--r--tests/adc-power/Makefile15
1 files changed, 15 insertions, 0 deletions
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
+