olsndot/tests/spi-master/Makefile
Karl Palsson 3ee8c6f8b9 spi-master-l0: wip:
doesn't work, but getting there
2018-04-16 23:15:48 +00:00

15 lines
325 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