aboutsummaryrefslogtreecommitdiff
path: root/contrib/Makefile
blob: 7485110ed5f3f7c1d9d78f2a9af3d7b4aefe4ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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

install-doc:	
	for dir in *; do \
	    if [ -e $$dir/Makefile ]; then \
		$(MAKE) -C $$dir $@ ; \
	    fi; \
	done || exit 0

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