Arti Zirk
054740c5de
subrepo: subdir: "libopencm3" merged: "88e91c9a7cce" upstream: origin: "https://github.com/libopencm3/libopencm3.git" branch: "master" commit: "88e91c9a7cce" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
16 lines
331 B
Makefile
16 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
|
|
|