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

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