source: tags/changing-indexers-branch-merged/gsdl/packages/Makefile.in@ 13768

Last change on this file since 13768 was 13768, checked in by (none), 17 years ago

This commit was manufactured by cvs2svn to create tag
'changing-indexers-branch-merged'.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1###########################################################################
2#
3# Makefile -- Makefile for packages included with Greenstone
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# PACKAGEDIRS contains the packages that we want to make and install. It
29# is assumed that each package will have at least four rules: all, install,
30# clean, and distclean.
31USE_Z3950=@USE_Z3950@
32USE_YAZ=@USE_YAZ@
33
34ifeq ($(USE_Z3950), 1)
35# make sure USE_YAZ is set
36USE_YAZ=1
37D2M=d2m
38else
39D2M=
40endif
41
42ifeq ($(USE_YAZ), 1)
43# we only compile the src and client dirs for now.
44YAZ=yaz/yaz-2.1.4/src yaz/yaz-2.1.4/client
45else
46YAZ=
47endif
48
49
50USE_CORBA=@USE_CORBA@
51MICO_DIR=@MICO_DIR@
52ifeq ($(USE_CORBA), 1)
53ifeq ($(MICO_DIR), default)
54CORBA="mico/mico"
55else
56CORBA=
57endif
58else
59CORBA=
60endif
61
62PACKAGEDIRS = wv/wv-gs rtftohtml/rtftohtml_src pdftohtml/pdftohtml_gs \
63 wget/wget-1.9 expat/ cpan/XML-Parser-2.34 \
64 $(YAZ) $(D2M) $(CORBA) \
65 xlhtml/xlhtml-0.4.9.0 isis-gdl
66
67all:
68 for odir in $(PACKAGEDIRS); do \
69 echo making $@ in $$odir; \
70 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
71 done
72ifeq ($(CORBA), "mico/mico")
73 cd mico/mico; $(MAKE) $(MDEFINES) install
74 mkdir -p ../bin/linux
75 mkdir -p ../lib
76 mkdir -p ../include
77 mkdir -p ../man
78 cp -f mico/bin/* ../bin/linux
79 cp -f mico/lib/* ../lib/
80 cp -fr mico/include/* ../include
81 cp -fr mico/man ../man
82endif
83ifeq ($(USE_YAZ), 1)
84# need to do make install in include and src dirs to get the header files and
85# lib file into the right place
86 cd yaz/yaz-2.1.4/include; $(MAKE) $(MDEFINES) install
87 cd yaz/yaz-2.1.4/src; $(MAKE) $(MDEFINES) install
88endif
89
90
91install:
92 for idir in $(PACKAGEDIRS); do \
93 echo installing $$idir; \
94 (cd $$idir && $(MAKE) install) || exit 1; \
95 done
96
97clean:
98 for subdir in $(PACKAGEDIRS); do \
99 echo cleaning $@ in $$subdir; \
100 (cd $$subdir && $(MAKE) clean || exit 0) ; \
101 done
102
103distclean:
104 for subdir in $(PACKAGEDIRS); do \
105 echo cleaning $@ in $$subdir; \
106 (cd $$subdir && $(MAKE) distclean || exit 0) ; \
107 done
Note: See TracBrowser for help on using the repository browser.