From 7b91c886d9db1f81818e3b73b37fcb5d85734f59 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Fri, 12 Oct 2012 11:47:03 +0200 Subject: o Initial import of postgresql setup for app.sh. --- postgresql/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 postgresql/Makefile (limited to 'postgresql/Makefile') diff --git a/postgresql/Makefile b/postgresql/Makefile new file mode 100644 index 0000000..7279f36 --- /dev/null +++ b/postgresql/Makefile @@ -0,0 +1,14 @@ +VERSION=1.0-SNAPSHOT +ZIP_FILE=postgresql-$(VERSION).zip + +all: $(ZIP_FILE) + +clean: + rm -f $(ZIP_FILE) + +postgresql-$(VERSION).zip: + rm -rf zip + mkdir -p zip/root + cp -r etc zip/root/etc/ + cp -r bin zip/root/bin/ + (cd zip; zip -r ../$@ *) -- cgit v1.2.3