diff options
author | Tony Hansen <tony@att.com> | 2017-08-21 15:12:37 +0000 |
---|---|---|
committer | Tony Hansen <tony@att.com> | 2017-08-21 15:47:22 +0000 |
commit | 5ae237d3a66fa2ff063a2c364e313c35bf4ed779 (patch) | |
tree | 379c4824d0918e28ea382a3ee5aba369f9b8c772 /makefile | |
parent | c95796be872dc54e7bfa05d0bd59a3d7d70cd037 (diff) |
[DCAEGEN2-49] push seed code for PGaaS
Change-Id: I482a366fb3c871b9fc729fcbe8af30ac663f8fb6
Signed-off-by: Tony Hansen <tony@att.com>
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 31 |
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: |