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

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

Missing src/ in from of jdbmedit

  • Property svn:executable set to *
File size: 4.1 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
64ENABLE_JDBM=@ENABLE_JDBM@
65
66ifeq ($(ENABLE_JDBM), 1)
67COMPILEDDIRS += src/jdbmedit
68INSTALLDIRS += src/jdbmedit
69endif
70
71
72MODULEDIRS = @MODULEDIRS@
73
74
75with-jni without-jni:
76 for odir in $(INDEXERSDIR); do \
77 echo making $@ in $$odir; \
78 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
79 done
80 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
81 echo making all in $$odir; \
82 (cd $$odir && $(MAKE) $(MDEFINES) all) || exit 1; \
83 done
84
85install-with-jni:
86 for odir in $(INDEXERSDIR); do \
87 echo making $@ in $$odir; \
88 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
89 done
90 if test -e $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar; then \
91 cp $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar ../bin/java/.; \
92 fi
93 for idir in $(INSTALLDIRS); do \
94 echo installing $$idir; \
95 (cd $$idir && $(MAKE) install) || exit 1; \
96 done
97
98install-without-jni:
99 for odir in $(INDEXERSDIR); do \
100 echo making $@ in $$odir; \
101 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
102 done
103 if test -e $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar; then \
104 cp $(INDEXERSDIR)/lucene-gs/LuceneWrapper.jar ../bin/java/.; \
105 fi
106 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
107 echo making install in $$odir; \
108 (cd $$odir && $(MAKE) $(MDEFINES) install) || exit 1; \
109 done
110
111distclean: clean
112 rm -f Makefile config.cache config.h config.log stamp-h config.status
113 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \
114 echo cleaning $@ in $$subdir; \
115 (cd $$subdir && $(MAKE) distclean) || exit 1; \
116 done
117
118clean:
119 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \
120 echo cleaning $@ in $$subdir; \
121 (cd $$subdir && $(MAKE) clean) || exit 1; \
122 done
123
124# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
125# (and might run the wrong version of autoconf)
126#
127## For an explanation of the following Makefile rules, see node
128## `Automatic Remaking' in GNU Autoconf documentation.
129#Makefile: Makefile.in config.status
130# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
131#config.status: configure
132# ./config.status --recheck
133#configure: configure.in aclocal.m4
134# cd $(srcdir) && autoconf
135#
136#config.h: stamp-h
137#stamp-h: config.h.in config.status
138# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
139#config.h.in: stamp-h.in
140#stamp-h.in: configure.in aclocal.m4 acconfig.h
141# cd $(srcdir) && autoheader
142# $(TOUCH) $(srcdir)/stamp-h.in
143
144
145
Note: See TracBrowser for help on using the repository browser.