Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
blob: f74678b184cae6eec4be3f769291463a2d0fd17a (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
# 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