diff --git a/Makefile b/Makefile index 8ba800a..890bedf 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,10 @@ +SERVICES := mumble-web openldap website + build-%: - make -C $* build + $(MAKE) -C $* build + +buildall: $(SERVICES) +$(SERVICES): + $(MAKE) -C $@ build + +.PHONY: buildall $(SERVICES)