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

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

Upgrading to a newer version of SQLITE to (hopefully) fix problem with Windows version not accepting end-of-line characters when commands are piped to it. Ticket at SQLITE web site reports this to be a problem and that shifting to a 3.6.x version eliminates the problem

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