olsndot/tests/adc-power/Makefile
Karl Palsson a62f296f73 adc-power: correctly allow parallel make
Need to use $(MAKE) correctly!
2018-04-16 21:32:29 +00:00

15 lines
331 B
Makefile

# 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