services/Makefile
2024-11-29 04:57:45 +01:00

11 lines
158 B
Makefile

SERVICES := mumble-web openldap website
build-%:
$(MAKE) -C $* build
buildall: $(SERVICES)
$(SERVICES):
$(MAKE) -C $@ build
.PHONY: buildall $(SERVICES)