blob: 52841cd0049d628341f7abd4be5eb98319361cd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|