source: main/trunk/greenstone2/common-src/packages/Makefile.in@ 21426

Last change on this file since 21426 was 21426, checked in by davidb, 14 years ago

Using ENABLE_JDBM to control is jdbm Java code is used

File size: 2.7 KB
Line 
1###########################################################################
2#
3# Makefile -- Makefile for packages shared between Greenstone build and 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
28ENABLE_JDBM=@ENABLE_JDBM@
29
30ifeq ($(ENABLE_JDBM), 1)
31JDBM_DIR = jdbm/jdbm-1.0
32else
33JDBM_DIR =
34endif
35
36USE_SQLITE=@USE_SQLITE@
37
38ifeq ($(USE_SQLITE), 1)
39SQLITE_DIR = sqlite/sqlite-amalgamation-3.5.9
40else
41SQLITE_DIR =
42endif
43
44# COMPILEDIRS contains the packages that we want to make and install. It
45# is assumed that each package will have at least four rules: all, install,
46# clean, and distclean.
47# CLEANDIRS is COMPILEDIRS and iconv and expat. Iconv and expat get compiled
48# up during the configure stage itself.
49COMPILEDIRS = gdbm $(SQLITE_DIR) $(JDBM_DIR) search4j
50CLEANDIRS = iconv expat $(COMPILEDIRS)
51
52
53all:
54 for odir in $(COMPILEDIRS); do \
55 echo making $@ in $$odir; \
56 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
57 done
58ifeq ($(ENABLE_JDBM), 1)
59# do 'make install' in jdbm directory to get the jar file into the right place
60 cd $(JDBM_DIR) && $(MAKE) $(MDEFINES) install
61endif
62ifeq ($(USE_SQLITE), 1)
63# need to do make install in sqlite to get the header files and library into the right place
64 cd $(SQLITE_DIR) && $(MAKE) $(MDEFINES) install
65endif
66
67
68install:
69 for idir in $(COMPILEDIRS); do \
70 echo installing $$idir; \
71 (cd $$idir && $(MAKE) install) || exit 1; \
72 done
73
74clean:
75 for subdir in $(COMPILEDIRS); do \
76 echo cleaning $@ in $$subdir; \
77 (cd $$subdir && $(MAKE) clean || exit 0) ; \
78 done
79
80distclean:
81 for subdir in $(CLEANDIRS); do \
82 echo cleaning $@ in $$subdir; \
83 (cd $$subdir && $(MAKE) distclean || exit 0) ; \
84 done
85 (cd iconv && /bin/rm -rf bin include lib share)
Note: See TracBrowser for help on using the repository browser.