11 lines
158 B
Makefile
11 lines
158 B
Makefile
SERVICES := mumble-web openldap website
|
|
|
|
build-%:
|
|
$(MAKE) -C $* build
|
|
|
|
buildall: $(SERVICES)
|
|
$(SERVICES):
|
|
$(MAKE) -C $@ build
|
|
|
|
.PHONY: buildall $(SERVICES)
|