mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
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
This commit is contained in:
45
contrib/Makefile
Normal file
45
contrib/Makefile
Normal file
@ -0,0 +1,45 @@
|
||||
# Makefile for contrib code
|
||||
#
|
||||
# The following subdirs don't have a Makefile:
|
||||
#
|
||||
# apache_logging
|
||||
# linux
|
||||
# mSQL-interface
|
||||
# noupdate
|
||||
# unixdate
|
||||
#
|
||||
# The following subdirs give make errors:
|
||||
#
|
||||
# earthdistance
|
||||
# findoidjoins
|
||||
# isbn_issn
|
||||
# os2client
|
||||
# pginterface
|
||||
|
||||
all:
|
||||
for dir in *; do \
|
||||
if [ -e $$dir/Makefile ]; then \
|
||||
$(MAKE) -C $$dir; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
install:
|
||||
for dir in *; do \
|
||||
if [ -e $$dir/Makefile ]; then \
|
||||
$(MAKE) -C $$dir $@ ; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
clean:
|
||||
for dir in *; do \
|
||||
if [ -e $$dir/Makefile ]; then \
|
||||
$(MAKE) -C $$dir $@ ; \
|
||||
fi; \
|
||||
done || exit 0
|
||||
|
||||
distclean:
|
||||
for dir in *; do \
|
||||
if [ -e $$dir/Makefile ]; then \
|
||||
$(MAKE) -C $$dir $@ ; \
|
||||
fi; \
|
||||
done || exit 0
|
Reference in New Issue
Block a user