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

Last change on this file since 21327 was 21327, checked in by ak19, 14 years ago

Changes to makefiles, configure files, and source code to work with the new configure flags that allow indexers to be individually compiled up by setting each indexer to be enabled or disabled (enable-mg, enable-mgpp, enable-lucene).

  • Property svn:executable set to *
File size: 4.2 KB
Line 
1###########################################################################
2#
3# Makefile -- common code between gsdl runtime and buildtime
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 The New Zealand Digital Library Project
9#
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###########################################################################
26srcdir = @srcdir@
27
28PACKAGE = @PACKAGE@
29VERSION = @VERSION@
30
31@SET_MAKE@
32CC = @CC@
33CXX = @CXX@
34CFLAGS = @CFLAGS@
35CXXFLAGS = @CXXFLAGS@
36LIBS = @LIBS@
37MDEFINES =
38
39GSDLOS = @gsdlos@
40
41COMPILE = $(CC) -c
42
43SOURCES =
44
45OBJECTS =
46
47ALLFILES = $(OBJECTS)
48
49# indexers are treated slightly differently as we don't want to do make all/install for gs2
50INDEXERSDIR = indexers
51
52# all directories should be compiled
53COMPILEDIRS = packages src/lib src/gdbmedit/txt2db src/gdbmedit/db2txt \
54 src/gdbmedit/gdbmget src/gdbmedit/gdbmset \
55 src/gdbmedit/gdbmkeys src/gdbmedit/gdbmdel \
56 src/getpw
57
58# a subset of the directories get installed
59INSTALLDIRS = packages src/gdbmedit/db2txt src/gdbmedit/txt2db \
60 src/gdbmedit/gdbmget src/gdbmedit/gdbmset \
61 src/gdbmedit/gdbmkeys src/gdbmedit/gdbmdel \
62 src/getpw
63
64MODULEDIRS = @MODULEDIRS@
65
66
67all:
68 for odir in $(INDEXERSDIR) $(COMPILEDIRS) $(MODULEDIRS); do \
69 echo making $@ in $$odir; \
70 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
71 done
72
73install:
74 for odir in $(INDEXERSDIR); do \
75 echo making $@ in $$odir; \
76 (cd $$odir && $(MAKE) $(MDEFINES) install) || exit 1; \
77 done
78 if test -e $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar; then \
79 cp $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar ../bin/java/.; \
80 fi
81 for idir in $(INSTALLDIRS); do \
82 echo installing $$idir; \
83 (cd $$idir && $(MAKE) install) || exit 1; \
84 done
85
86gs2:
87 for odir in $(INDEXERSDIR); do \
88 echo making $@ in $$odir; \
89 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
90 done
91 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
92 echo making all in $$odir; \
93 (cd $$odir && $(MAKE) $(MDEFINES) all) || exit 1; \
94 done
95
96install-gs2:
97 for odir in $(INDEXERSDIR); do \
98 echo making $@ in $$odir; \
99 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
100 done
101 if test -e $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar; then \
102 cp $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar ../bin/java/.; \
103 fi
104 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
105 echo making install in $$odir; \
106 (cd $$odir && $(MAKE) $(MDEFINES) install) || exit 1; \
107 done
108
109distclean: clean
110 rm -f Makefile config.cache config.h config.log stamp-h config.status
111 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \
112 echo cleaning $@ in $$subdir; \
113 (cd $$subdir && $(MAKE) distclean) || exit 1; \
114 done
115
116clean:
117 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \
118 echo cleaning $@ in $$subdir; \
119 (cd $$subdir && $(MAKE) clean) || exit 1; \
120 done
121
122# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
123# (and might run the wrong version of autoconf)
124#
125## For an explanation of the following Makefile rules, see node
126## `Automatic Remaking' in GNU Autoconf documentation.
127#Makefile: Makefile.in config.status
128# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
129#config.status: configure
130# ./config.status --recheck
131#configure: configure.in aclocal.m4
132# cd $(srcdir) && autoconf
133#
134#config.h: stamp-h
135#stamp-h: config.h.in config.status
136# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
137#config.h.in: stamp-h.in
138#stamp-h.in: configure.in aclocal.m4 acconfig.h
139# cd $(srcdir) && autoheader
140# $(TOUCH) $(srcdir)/stamp-h.in
141
142
143
Note: See TracBrowser for help on using the repository browser.