summaryrefslogtreecommitdiff
path: root/postgresql/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'postgresql/Makefile')
-rw-r--r--postgresql/Makefile14
1 files changed, 14 insertions, 0 deletions
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 ../$@ *)