1 | ########################################################################### |
---|
2 | # |
---|
3 | # Makefile -- Makefile for packages included with Greenstone runtime |
---|
4 | # |
---|
5 | # A component of the Greenstone digital library software |
---|
6 | # from the New Zealand Digital Library Project at the |
---|
7 | # University of Waikato, New Zealand. |
---|
8 | # |
---|
9 | # Copyright (C) 2000 New Zealand Digital Library Project |
---|
10 | # |
---|
11 | # This program is free software; you can redistribute it and/or modify |
---|
12 | # it under the terms of the GNU General Public License as published by |
---|
13 | # the Free Software Foundation; either version 2 of the License, or |
---|
14 | # (at your option) any later version. |
---|
15 | # |
---|
16 | # This program is distributed in the hope that it will be useful, |
---|
17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | # GNU General Public License for more details. |
---|
20 | # |
---|
21 | # You should have received a copy of the GNU General Public License |
---|
22 | # along with this program; if not, write to the Free Software |
---|
23 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
24 | # |
---|
25 | ########################################################################### |
---|
26 | |
---|
27 | |
---|
28 | USE_Z3950=@USE_Z3950@ |
---|
29 | USE_YAZ=@USE_YAZ@ |
---|
30 | USE_APACHE_HTTPD=@USE_APACHE_HTTPD@ |
---|
31 | |
---|
32 | ifeq ($(USE_Z3950), 1) |
---|
33 | # make sure USE_YAZ is set |
---|
34 | USE_YAZ=1 |
---|
35 | D2M=d2m |
---|
36 | else |
---|
37 | D2M= |
---|
38 | endif |
---|
39 | |
---|
40 | ifeq ($(USE_YAZ), 1) |
---|
41 | # we only compile the src and client dirs for now. |
---|
42 | YAZ=yaz/yaz-2.1.4/src yaz/yaz-2.1.4/client |
---|
43 | else |
---|
44 | YAZ= |
---|
45 | endif |
---|
46 | |
---|
47 | |
---|
48 | USE_CORBA=@USE_CORBA@ |
---|
49 | MICO_DIR=@MICO_DIR@ |
---|
50 | ifeq ($(USE_CORBA), 1) |
---|
51 | ifeq ($(MICO_DIR), default) |
---|
52 | CORBA="mico/mico" |
---|
53 | else |
---|
54 | CORBA= |
---|
55 | endif |
---|
56 | else |
---|
57 | CORBA= |
---|
58 | endif |
---|
59 | |
---|
60 | |
---|
61 | ifeq ($(USE_APACHE_HTTPD), 1) |
---|
62 | HTTPD=apache-httpd/httpd-2.2.11 |
---|
63 | else |
---|
64 | HTTPD= |
---|
65 | endif |
---|
66 | |
---|
67 | |
---|
68 | # PACKAGEDIRS contains the packages that we want to make and install. It |
---|
69 | # is assumed that each package will have at least four rules: all, install, |
---|
70 | # clean, and distclean. |
---|
71 | PACKAGEDIRS = $(YAZ) $(D2M) $(CORBA) $(HTTPD) |
---|
72 | |
---|
73 | |
---|
74 | all: |
---|
75 | for odir in $(PACKAGEDIRS); do \ |
---|
76 | echo making $@ in $$odir; \ |
---|
77 | (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \ |
---|
78 | done |
---|
79 | ifeq ($(CORBA), "mico/mico") |
---|
80 | cd mico/mico; $(MAKE) $(MDEFINES) install |
---|
81 | mkdir -p ../bin/linux |
---|
82 | mkdir -p ../lib |
---|
83 | mkdir -p ../include |
---|
84 | mkdir -p ../man |
---|
85 | cp -f mico/bin/* ../bin/linux |
---|
86 | cp -f mico/lib/* ../lib/ |
---|
87 | cp -fr mico/include/* ../include |
---|
88 | cp -fr mico/man ../man |
---|
89 | endif |
---|
90 | ifeq ($(USE_YAZ), 1) |
---|
91 | # need to do make install in include and src dirs to get the header files and |
---|
92 | # lib file into the right place |
---|
93 | cd yaz/yaz-2.1.4/include; $(MAKE) $(MDEFINES) install |
---|
94 | cd yaz/yaz-2.1.4/src; $(MAKE) $(MDEFINES) install |
---|
95 | endif |
---|
96 | |
---|
97 | install: |
---|
98 | for idir in $(PACKAGEDIRS); do \ |
---|
99 | echo installing $$idir; \ |
---|
100 | (cd $$idir && $(MAKE) install) || exit 1; \ |
---|
101 | done |
---|
102 | ifeq ($(USE_APACHE_HTTPD), 1) |
---|
103 | cp -f $(PACKAGEDIRS)/apache-httpd/httpd.conf.in ../../apache-httpd/conf/. |
---|
104 | endif |
---|
105 | |
---|
106 | clean: |
---|
107 | for subdir in $(PACKAGEDIRS); do \ |
---|
108 | echo cleaning $@ in $$subdir; \ |
---|
109 | (cd $$subdir && $(MAKE) clean || exit 0) ; \ |
---|
110 | done |
---|
111 | |
---|
112 | distclean: |
---|
113 | for subdir in $(PACKAGEDIRS); do \ |
---|
114 | echo cleaning $@ in $$subdir; \ |
---|
115 | (cd $$subdir && $(MAKE) distclean || exit 0) ; \ |
---|
116 | done |
---|