aboutsummaryrefslogtreecommitdiffstats
path: root/postgresql-config/src/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 /postgresql-config/src/makefile
parentd1bf35c127a238238b573103edf7dbcb1ebd48ed (diff)
Init dcae.pgaas
Change-Id: Ieef6b600f4cbb0bf4ee3910c1bfc6b36773cd2d2 Signed-off-by: lj1412 <lji@research.att.com>
Diffstat (limited to 'postgresql-config/src/makefile')
-rw-r--r--postgresql-config/src/makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/postgresql-config/src/makefile b/postgresql-config/src/makefile
new file mode 100644
index 0000000..bf6ae6b
--- /dev/null
+++ b/postgresql-config/src/makefile
@@ -0,0 +1,39 @@
+
+DEVBIN=../../bin
+PKG=postgresql-config
+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
+ mkdir -p $(INS)
+ find stage ! -name makefile ! -name '*~' | cpio -pudmv $(INS)
+ find common ! -name makefile ! -name '*~' | cpio -pudmv $(INS)
+ chmod -R a+x $(INS)/stage/opt/app/postgresql-config/etc/*
+ 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
+