services/Makefile

11 lines
158 B
Makefile
Raw Normal View History

2024-11-29 04:57:45 +01:00
SERVICES := mumble-web openldap website
2024-11-27 22:56:46 +01:00
build-%:
2024-11-29 04:57:45 +01:00
$(MAKE) -C $* build
buildall: $(SERVICES)
$(SERVICES):
$(MAKE) -C $@ build
.PHONY: buildall $(SERVICES)