From 7927ff179242b796330d17869c83fa07751abf95 Mon Sep 17 00:00:00 2001 From: lj1412 Date: Tue, 14 Feb 2017 15:10:09 +0000 Subject: Init dcae.pgaas Change-Id: Ieef6b600f4cbb0bf4ee3910c1bfc6b36773cd2d2 Signed-off-by: lj1412 --- makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..0758d61 --- /dev/null +++ b/makefile @@ -0,0 +1,21 @@ + +all: + +STAGEDIRS=cdf postgresql-prep postgresql-config pgaas pgaas-post + +build: + for i in $(STAGEDIRS); do ( cd $$i/src && $(MAKE) build ) done + +clean: + for i in $(STAGEDIRS); do ( cd $$i/src && $(MAKE) clean ) done + +stage: + for i in $(STAGEDIRS); do ( cd $$i/src && $(MAKE) stage ) done + +upload-javadocs: + for i in $(STAGEDIRS); do ( cd $$i/src && $(MAKE) upload-javadocs ) done + + +debian: + for i in $(STAGEDIRS); do ( cd $$i/src && $(MAKE) debian ) done + -- cgit 1.2.3-korg