diff options
Diffstat (limited to 'pgaas-post/src/makefile')
-rw-r--r-- | pgaas-post/src/makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pgaas-post/src/makefile b/pgaas-post/src/makefile new file mode 100644 index 0000000..d66d74b --- /dev/null +++ b/pgaas-post/src/makefile @@ -0,0 +1,38 @@ + +DEVBIN=../../bin +PKG=pgaas-post +REPACKAGESWMOPTS= +REPACKAGEDEBIANOPTS= + +INS= ../install +INSSTG= $(INS)/stage +INSCOM= $(INS)/common + +all: + +clean-stage: + rm -rf $(INSSTG) + +clean-common: + rm -rf $(INSCOM) + +clean: + rm -rf $(INS) + +build: + +stage: clean-stage clean-common + find common ! -name makefile ! -name '*~' | cpio -pudmv $(INS) + find stage ! -name makefile ! -name '*~' | cpio -pudmv $(INS) + chmod a+x $(INSSTG)/opt/app/pgaas-post/bin/* + cp -p repackage.* $(INS) + + +debian: stage + repackage -y repackage.json -b debian -d $(INS) -u + repackage -y repackage.json -b debian -d $(INS) -u -B LATEST + @echo debian built + +upload-javadocs: + @echo nothing to do here + |