source: gsdl/trunk/runtime-src/packages/Makefile.in@ 18760

Last change on this file since 18760 was 18760, checked in by ak19, 15 years ago

At end of make install generates buil.properties from the .in file

File size: 3.7 KB
RevLine 
[16568]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
28USE_Z3950=@USE_Z3950@
29USE_YAZ=@USE_YAZ@
[18483]30USE_APACHE_HTTPD=@USE_APACHE_HTTPD@
[16568]31
32ifeq ($(USE_Z3950), 1)
33# make sure USE_YAZ is set
34USE_YAZ=1
35D2M=d2m
36else
37D2M=
38endif
39
40ifeq ($(USE_YAZ), 1)
41# we only compile the src and client dirs for now.
42YAZ=yaz/yaz-2.1.4/src yaz/yaz-2.1.4/client
43else
44YAZ=
45endif
46
47
48USE_CORBA=@USE_CORBA@
49MICO_DIR=@MICO_DIR@
50ifeq ($(USE_CORBA), 1)
51ifeq ($(MICO_DIR), default)
52CORBA="mico/mico"
53else
54CORBA=
55endif
56else
57CORBA=
58endif
59
[18483]60
61ifeq ($(USE_APACHE_HTTPD), 1)
62HTTPD=apache-httpd/httpd-2.2.11
63else
64HTTPD=
65endif
66
67
[16568]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.
[18483]71PACKAGEDIRS = $(YAZ) $(D2M) $(CORBA) $(HTTPD)
[16568]72
73
74all:
75 for odir in $(PACKAGEDIRS); do \
76 echo making $@ in $$odir; \
77 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
78 done
79ifeq ($(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
89endif
90ifeq ($(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
95endif
96
97install:
98 for idir in $(PACKAGEDIRS); do \
99 echo installing $$idir; \
100 (cd $$idir && $(MAKE) install) || exit 1; \
101 done
[18676]102ifeq ($(USE_APACHE_HTTPD), 1)
[18757]103 mkdir -p ../../apache-httpd/${GSDLOS}/conf
104 cp -f apache-httpd/httpd.conf.in ../../apache-httpd/${GSDLOS}/conf/.
[18724]105 mkdir -p ../../etc/logs-gsi
[18760]106 cp -f ../../lib/java/build.properties.in ../../lib/java/build.properties.in
[18721]107 @ echo "*************** INFO ***************"
108 @ echo "Run: source setup.bash, to set up the environment for greenstone"
[18681]109 @ echo "Type: make configure-admin, to set the admin password"
110 @ echo "Edit the build.properties file to change the port number if necessary"
111 @ echo "Type: make configure-web, to configure the included apache webserver"
112 @ echo "EITHER type: make web-start, to launch the webserver from the command-line"
113 @ echo "OR run: gs2-server.sh, to launch the GUI version of the included webserver"
[18721]114 @ echo "************************************"
[18676]115endif
[16568]116
117clean:
118 for subdir in $(PACKAGEDIRS); do \
119 echo cleaning $@ in $$subdir; \
120 (cd $$subdir && $(MAKE) clean || exit 0) ; \
121 done
122
123distclean:
124 for subdir in $(PACKAGEDIRS); do \
125 echo cleaning $@ in $$subdir; \
126 (cd $$subdir && $(MAKE) distclean || exit 0) ; \
127 done
Note: See TracBrowser for help on using the repository browser.