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

Last change on this file since 24075 was 24075, checked in by davidb, 13 years ago

Updating SQLite to a more recent release (May 2011) supporting casting operations (used in our numeric searching)

File size: 2.9 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
[22058]27USE_GDBM=@USE_GDBM@
28ifeq ($(USE_GDBM), 1)
29GDBM_DEFINES = -DUSE_GDBM
[22079]30GDBM_DIR = gdbm
[22058]31else
32GDBM_DEFINES =
[22079]33GDBM_DIR =
[22058]34endif
[16566]35
[22058]36USE_JDBM=@USE_JDBM@
37ifeq ($(USE_JDBM), 1)
[21409]38JDBM_DIR = jdbm/jdbm-1.0
[22058]39JDBM_DEFINES = -DUSE_JDBM
[21409]40else
[22058]41JDBM_DIR =
42JDBM_DEFINES =
[21409]43endif
44
[16566]45USE_SQLITE=@USE_SQLITE@
46ifeq ($(USE_SQLITE), 1)
[24075]47SQLITE_DIR = sqlite/sqlite-autoconf-3070602
[22058]48SQLITE_DEFINES = -DUSE_SQLITE
[16566]49else
50SQLITE_DIR =
[22058]51SQLITE_DEFINES =
[16566]52endif
53
[22058]54DEFS = @DEFS@ $(GDBM_DEFINES) $(JDBM_DEFINES) $(SQLITE_DEFINES)
55
[20832]56# COMPILEDIRS contains the packages that we want to make and install. It
[16566]57# is assumed that each package will have at least four rules: all, install,
58# clean, and distclean.
[20832]59# CLEANDIRS is COMPILEDIRS and iconv and expat. Iconv and expat get compiled
60# up during the configure stage itself.
[22079]61COMPILEDIRS = $(GDBM_DIR) $(SQLITE_DIR) $(JDBM_DIR) search4j
[20832]62CLEANDIRS = iconv expat $(COMPILEDIRS)
[16566]63
64
65all:
[20832]66 for odir in $(COMPILEDIRS); do \
[16566]67 echo making $@ in $$odir; \
68 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
69 done
[22058]70ifeq ($(USE_JDBM), 1)
[21409]71# do 'make install' in jdbm directory to get the jar file into the right place
72 cd $(JDBM_DIR) && $(MAKE) $(MDEFINES) install
73endif
[16566]74ifeq ($(USE_SQLITE), 1)
75# need to do make install in sqlite to get the header files and library into the right place
76 cd $(SQLITE_DIR) && $(MAKE) $(MDEFINES) install
77endif
78
79
80install:
[20832]81 for idir in $(COMPILEDIRS); do \
[16566]82 echo installing $$idir; \
83 (cd $$idir && $(MAKE) install) || exit 1; \
84 done
85
86clean:
[20832]87 for subdir in $(COMPILEDIRS); do \
[16566]88 echo cleaning $@ in $$subdir; \
89 (cd $$subdir && $(MAKE) clean || exit 0) ; \
90 done
91
92distclean:
[20832]93 for subdir in $(CLEANDIRS); do \
[16566]94 echo cleaning $@ in $$subdir; \
95 (cd $$subdir && $(MAKE) distclean || exit 0) ; \
96 done
[21423]97 (cd iconv && /bin/rm -rf bin include lib share)
Note: See TracBrowser for help on using the repository browser.