27b8143944
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
45 lines
737 B
Makefile
45 lines
737 B
Makefile
# 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
|