aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorlj1412 <lji@research.att.com>2017-02-14 15:10:09 +0000
committerlj1412 <lji@research.att.com>2017-02-14 15:10:11 +0000
commit7927ff179242b796330d17869c83fa07751abf95 (patch)
treeba2b93e26ec71bff863bc7be9fb5dbd0b5d9c928 /makefile
parentd1bf35c127a238238b573103edf7dbcb1ebd48ed (diff)
Init dcae.pgaas
Change-Id: Ieef6b600f4cbb0bf4ee3910c1bfc6b36773cd2d2 Signed-off-by: lj1412 <lji@research.att.com>
Diffstat (limited to 'makefile')
-rw-r--r--makefile21
1 files changed, 21 insertions, 0 deletions
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
+