summaryrefslogtreecommitdiff
path: root/contrib/tools/Makefile
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-06-05 19:09:48 +0000
committerBruce Momjian <bruce@momjian.us>1999-06-05 19:09:48 +0000
commit27b8143944dc0585597bdaa3ae5e5b49a4760def (patch)
treefb576673bee591564b1dedd300cd0732e341388c /contrib/tools/Makefile
parent977108e8d9ae68cac5ec6f2908e03bd7b46fdbc7 (diff)
downloadpostgresql-27b8143944dc0585597bdaa3ae5e5b49a4760def.tar.gz
Hi,
I have updated my contrib code for version 6.5. In the attachment you will find the directories array, datetime, miscutil, string, tools and userlocks which replace the corresponding directories under contrib. In contrib/tools you will find some developement scripts which I use while hacking the sources. I hope they will be useful for some other people. I have also added a contrib/Makefile which tries to compile and install all the contribs. Unfortunately many of them don't have a Makefile or don't compile cleanly. -- Massimo Dal Zotto
Diffstat (limited to 'contrib/tools/Makefile')
-rw-r--r--contrib/tools/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/tools/Makefile b/contrib/tools/Makefile
new file mode 100644
index 0000000000..95e97d72ba
--- /dev/null
+++ b/contrib/tools/Makefile
@@ -0,0 +1,21 @@
+#-------------------------------------------------------------------------
+#
+# Makefile --
+#
+# Makefile for contrib tools.
+#
+#-------------------------------------------------------------------------
+
+PGDIR = ../..
+SRCDIR = $(PGDIR)/src
+
+include $(SRCDIR)/Makefile.global
+
+all:
+
+install:
+
+clean:
+ rm -f *~
+
+distclean: clean