source: gsdl/trunk/gs2common/packages/Makefile.in@ 16566

Last change on this file since 16566 was 16566, checked in by davidb, 16 years ago

Extra Makefile, configure and supporting files for shared build/runtime code

File size: 2.2 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
28USE_SQLITE=@USE_SQLITE@
29
30ifeq ($(USE_SQLITE), 1)
31SQLITE_DIR = sqlite/sqlite-amalgamation-3.5.9
32else
33SQLITE_DIR =
34endif
35
36# PACKAGEDIRS contains the packages that we want to make and install. It
37# is assumed that each package will have at least four rules: all, install,
38# clean, and distclean.
39PACKAGEDIRS = expat $(SQLITE_DIR)
40
41
42all:
43 for odir in $(PACKAGEDIRS); do \
44 echo making $@ in $$odir; \
45 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
46 done
47ifeq ($(USE_SQLITE), 1)
48# need to do make install in sqlite to get the header files and library into the right place
49 cd $(SQLITE_DIR) && $(MAKE) $(MDEFINES) install
50endif
51
52
53install:
54 for idir in $(PACKAGEDIRS); do \
55 echo installing $$idir; \
56 (cd $$idir && $(MAKE) install) || exit 1; \
57 done
58
59clean:
60 for subdir in $(PACKAGEDIRS); do \
61 echo cleaning $@ in $$subdir; \
62 (cd $$subdir && $(MAKE) clean || exit 0) ; \
63 done
64
65distclean:
66 for subdir in $(PACKAGEDIRS); do \
67 echo cleaning $@ in $$subdir; \
68 (cd $$subdir && $(MAKE) distclean || exit 0) ; \
69 done
Note: See TracBrowser for help on using the repository browser.