diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..20eb13e --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +build-all: + $(MAKE) -C base build + $(MAKE) -C base-java build + $(MAKE) -C web build + $(MAKE) -C prosody build + $(MAKE) -C jicofo build + $(MAKE) -C jvb build + +.PHONY: build-all diff --git a/base-java/Makefile b/base-java/Makefile new file mode 100644 index 0000000..9c93b25 --- /dev/null +++ b/base-java/Makefile @@ -0,0 +1,4 @@ +build: + docker build -t jitsi/base-java . + +.PHONY: build diff --git a/base/Makefile b/base/Makefile new file mode 100644 index 0000000..305755e --- /dev/null +++ b/base/Makefile @@ -0,0 +1,4 @@ +build: + docker build -t jitsi/base . + +.PHONY: build