blob: 8aa770d84a4149eb42e1ed74c10fa586239b312a (
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
|