source: gsdl/tags/gsdl-2_71-distribution/gsdl/packages/Makefile.in@ 14121

Last change on this file since 14121 was 12922, checked in by kjdon, 18 years ago

added --disable-accentfold option to main configure, which is used to set ENABLE_ACCENTFOLD. compilation of unac dependent on this, and itss used by src/mgpp/text/makefile to include accentfoldign support or not

  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 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
62ENABLE_ACCENTFOLD=@ENABLE_ACCENTFOLD@
63ifeq ($(ENABLE_ACCENTFOLD), 1)
64UNAC=unac
65else
66UNAC=
67endif
68
69PACKAGEDIRS = wv/wv-gs rtftohtml/rtftohtml_src pdftohtml/pdftohtml_gs \
70 wget/wget-1.9 expat/ cpan/XML-Parser-2.34 \
71 $(YAZ) $(D2M) $(CORBA) $(UNAC) \
72 xlhtml/xlhtml-0.4.9.0 isis-gdl
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
97
98install:
99 for idir in $(PACKAGEDIRS); do \
100 echo installing $$idir; \
101 (cd $$idir && $(MAKE) install) || exit 1; \
102 done
103
104clean:
105 for subdir in $(PACKAGEDIRS); do \
106 echo cleaning $@ in $$subdir; \
107 (cd $$subdir && $(MAKE) clean || exit 0) ; \
108 done
109
110distclean:
111 for subdir in $(PACKAGEDIRS); do \
112 echo cleaning $@ in $$subdir; \
113 (cd $$subdir && $(MAKE) distclean || exit 0) ; \
114 done
Note: See TracBrowser for help on using the repository browser.