You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
331 B
15 lines
331 B
# 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
|
|
|
|
|