aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..df92dbc
--- /dev/null
+++ b/makefile
@@ -0,0 +1,31 @@
+
+all:
+
+STAGEDIRS=cdf pgaas
+
+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
+
+
+
+pgaas:
+generate-sources:
+compile: build
+
+test:
+ # should run unit tests here
+package:
+install: