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

Last change on this file since 31979 was 30879, checked in by ak19, 7 years ago

Modifications to get GS2 compiling to work again on Macs after the recent ElCapitan changes around libiconv for a GS3 release.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
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###########################################################################
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
49SPECIAL_COMPILEDIRS = common-src
50COMPILEDIRS = build-src runtime-src
51
52SPECIAL_INSTALLDIRS = common-src
53INSTALLDIRS = build-src runtime-src
54
55MODULEDIRS = @MODULEDIRS@
56
57ENABLE_JNI=@ENABLE_JNI@
58ifeq ($(ENABLE_JNI), 1)
59COMPILE_TARGET=with-jni
60else
61COMPILE_TARGET=without-jni
62endif
63
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
70# Upon installing, on Linux and Mac need to copy the libiconv library files
71# into apache's lib folder since apache needs the libiconv when running.
72# This is particularly necessary for the release version since its common-src
73# folder (and the libiconv libraries this contains) are not included.
74# If ever the libiconv is used by more than apache, copy libiconv into GS2's lib
75# folder rather than into apache lib folder.
76install: install-$(COMPILE_TARGET)
77 if test -d apache-httpd; then \
78 if test -d common-src/packages/iconv/lib; then \
79 cp -r common-src/packages/iconv/lib/lib* apache-httpd/$(GSDLOS)/lib/.; \
80 fi; \
81 fi;
82 @echo "Install done"
83
84
85with-jni without-jni:
86 for odir in $(SPECIAL_COMPILEDIRS); do \
87 if test -d $$odir; then \
88 echo making $(COMPILE_TARGET) in $$odir; \
89 (cd $$odir && $(MAKE) $(MDEFINES) $(COMPILE_TARGET)) || exit 1; \
90 fi; \
91 done
92 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
93 if test -d $$odir; then \
94 echo making all in $$odir; \
95 (cd $$odir && $(MAKE) $(MDEFINES) all) || exit 1; \
96 fi; \
97 done
98
99install-with-jni install-without-jni: all
100 for idir in $(SPECIAL_INSTALLDIRS); do \
101 if test -d $$idir; then \
102 echo installing $$idir $(COMPILE_TARGET); \
103 (cd $$idir && $(MAKE) install-$(COMPILE_TARGET)) || exit 1; \
104 fi; \
105 done
106 for idir in $(INSTALLDIRS); do \
107 if test -d $$idir; then \
108 echo installing $$idir; \
109 (cd $$idir && $(MAKE) install) || exit 1; \
110 fi; \
111 done
112
113apache-for-dist:
114 if test -d runtime-src; then \
115 (cd runtime-src/packages && $(MAKE) apache-for-dist) || exit 1; \
116 fi
117
118distclean: clean
119 rm -f Makefile config.cache config.h config.log stamp-h config.status
120 for subdir in $(SPECIAL_COMPILEDIRS) $(COMPILEDIRS); do \
121 if test -d $$subdir; then \
122 echo cleaning $@ in $$subdir; \
123 (cd $$subdir && $(MAKE) distclean) || exit 1; \
124 fi; \
125 done
126
127clean:
128 for subdir in $(SPECIAL_COMPILEDIRS) $(COMPILEDIRS); do \
129 if test -d $$subdir; then \
130 echo cleaning $@ in $$subdir; \
131 (cd $$subdir && $(MAKE) clean) || exit 1; \
132 fi; \
133 done
134
135# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
136# (and might run the wrong version of autoconf)
137#
138## For an explanation of the following Makefile rules, see node
139## `Automatic Remaking' in GNU Autoconf documentation.
140#Makefile: Makefile.in config.status
141# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
142#config.status: configure
143# ./config.status --recheck
144#configure: configure.in aclocal.m4
145# cd $(srcdir) && autoconf
146#
147#config.h: stamp-h
148#stamp-h: config.h.in config.status
149# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
150#config.h.in: stamp-h.in
151#stamp-h.in: configure.in aclocal.m4 acconfig.h
152# cd $(srcdir) && autoheader
153# $(TOUCH) $(srcdir)/stamp-h.in
154
155
156
Note: See TracBrowser for help on using the repository browser.