source: main/trunk/greenstone2/Makefile.in@ 21366

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

New configuration and compilation flag ENABLE_JNI added which will be disabled by default for GS2 since in general GS doesn't need mg and mgpp compiled up with jni. GS3's build.xml will need to explicitly set ENABLE_JNI to compile mg and mgpp with jni.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
RevLine 
[559]1###########################################################################
2#
3# Makefile -- gsdl
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###########################################################################
[1935]26srcdir = @srcdir@
[559]27
[552]28PACKAGE = @PACKAGE@
29VERSION = @VERSION@
30
31@SET_MAKE@
32CC = @CC@
[2963]33CXX = @CXX@
[552]34CFLAGS = @CFLAGS@
[2963]35CXXFLAGS = @CXXFLAGS@
[552]36LIBS = @LIBS@
[555]37MDEFINES =
[552]38
[704]39GSDLOS = @gsdlos@
40
[552]41COMPILE = $(CC) -c
42
[555]43SOURCES =
[552]44
[555]45OBJECTS =
[552]46
47ALLFILES = $(OBJECTS)
48
[18802]49SPECIAL_COMPILEDIRS = common-src
50COMPILEDIRS = build-src runtime-src
[552]51
[18802]52SPECIAL_INSTALLDIRS = common-src
53INSTALLDIRS = build-src runtime-src
[16563]54
[3064]55MODULEDIRS = @MODULEDIRS@
56
[21366]57ENABLE_JNI=@ENABLE_JNI@
58ifeq ($(ENABLE_JNI), 1)
59COMPILE_TARGET=with-jni
60else
61COMPILE_TARGET=without-jni
62endif
[559]63
[21366]64
65# with some compilers, just calling another target is insufficient
66# so an extra echo stmt is added after each call to another target
67all: $(COMPILE_TARGET)
68 @echo "Compile done"
69
70install: install-$(COMPILE_TARGET)
71 @echo "Install done"
72
73
74with-jni without-jni:
[18802]75 for odir in $(SPECIAL_COMPILEDIRS); do \
[21366]76 if test -d $$odir; then \
77 echo making $(COMPILE_TARGET) in $$odir; \
78 (cd $$odir && $(MAKE) $(MDEFINES) $(COMPILE_TARGET)) || exit 1; \
79 fi; \
[18802]80 done
[13777]81 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
[21366]82 if test -d $$odir; then \
83 echo making all in $$odir; \
84 (cd $$odir && $(MAKE) $(MDEFINES) all) || exit 1; \
85 fi; \
[552]86 done
87
[21366]88install-with-jni install-without-jni: all
[18802]89 for idir in $(SPECIAL_INSTALLDIRS); do \
[21366]90 if test -d $$idir; then \
91 echo installing $$idir $(COMPILE_TARGET); \
92 (cd $$idir && $(MAKE) install-$(COMPILE_TARGET)) || exit 1; \
93 fi; \
[18802]94 done
[559]95 for idir in $(INSTALLDIRS); do \
[21366]96 if test -d $$idir; then \
97 echo installing $$idir; \
98 (cd $$idir && $(MAKE) install) || exit 1; \
99 fi; \
[559]100 done
101
[18825]102apache-for-dist:
[21366]103 if test -d runtime-src; then \
104 (cd runtime-src/packages && $(MAKE) apache-for-dist) || exit 1; \
105 fi
[18825]106
[21366]107# For GS2: include the Greenstone Server Interface Makefile here
108# http://www.makelinux.net/make3/make3-CHP-3-SECT-7.html
109sinclude GSI-Makefile
[18475]110
[2589]111distclean: clean
[1078]112 rm -f Makefile config.cache config.h config.log stamp-h config.status
[19262]113 for subdir in $(SPECIAL_COMPILEDIRS) $(COMPILEDIRS); do \
[21366]114 if test -d $$subdir; then \
115 echo cleaning $@ in $$subdir; \
116 (cd $$subdir && $(MAKE) distclean) || exit 1; \
117 fi; \
[992]118 done
119
120clean:
[19262]121 for subdir in $(SPECIAL_COMPILEDIRS) $(COMPILEDIRS); do \
[21366]122 if test -d $$subdir; then \
123 echo cleaning $@ in $$subdir; \
124 (cd $$subdir && $(MAKE) clean) || exit 1; \
125 fi; \
[555]126 done
127
[8769]128# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
129# (and might run the wrong version of autoconf)
130#
131## For an explanation of the following Makefile rules, see node
132## `Automatic Remaking' in GNU Autoconf documentation.
133#Makefile: Makefile.in config.status
134# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
135#config.status: configure
136# ./config.status --recheck
137#configure: configure.in aclocal.m4
138# cd $(srcdir) && autoconf
139#
140#config.h: stamp-h
141#stamp-h: config.h.in config.status
142# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
143#config.h.in: stamp-h.in
144#stamp-h.in: configure.in aclocal.m4 acconfig.h
145# cd $(srcdir) && autoheader
146# $(TOUCH) $(srcdir)/stamp-h.in
[555]147
148
[691]149
Note: See TracBrowser for help on using the repository browser.