source: main/trunk/greenstone2/build-src/Makefile.in@ 28837

Last change on this file since 28837 was 28837, checked in by ak19, 10 years ago

Reverting to revision 28636 to get GS2 to compile again with gnome-lib-minimal on Ubuntu (it compiled with gnome-lib) although everything was compiling on CentOS and didn't need these changes.

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1###########################################################################
2#
3# Makefile -- gsdl buildtime code
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
28SHELL = /bin/bash
29PACKAGE = @PACKAGE@
30VERSION = @VERSION@
31
32@SET_MAKE@
33CC = @CC@
34CXX = @CXX@
35CFLAGS = @CFLAGS@
36CXXFLAGS = @CXXFLAGS@
37LIBS = @LIBS@
38MDEFINES =
39
40GSDLOS = @gsdlos@
41
42COMPILE = $(CC) -c
43
44SOURCES =
45
46OBJECTS =
47
48ALLFILES = $(OBJECTS)
49
50# all directories should be compiled
51COMPILEDIRS = packages src/hashfile src/phind/generate src/java/org/nzdl/gsdl
52# a subset of the directories get installed
53INSTALLDIRS = packages src/hashfile src/phind/generate
54
55MODULEDIRS = @MODULEDIRS@
56
57ENABLE_GNOMELIB_EXT=@ENABLE_GNOMELIB_EXT@
58
59
60all:
61 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
62 echo making $@ in $$odir; \
63 if test $(ENABLE_GNOMELIB_EXT) = 1; then \
64 if test -d ../ext/gnome-lib; then \
65 (pushd ../ext/gnome-lib && source ./devel.bash && popd && cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
66 elif test -d ../ext/gnome-lib-minimal; then \
67 (pushd ../ext/gnome-lib-minimal && source ./devel.bash && popd && cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
68 fi; \
69 else \
70 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
71 fi; \
72 done
73
74install: all
75 for idir in $(INSTALLDIRS); do \
76 echo installing $$idir; \
77 (cd $$idir && $(MAKE) install) || exit 1; \
78 done
79 cp src/java/org/nzdl/gsdl/ApplyXSLT.jar ../bin/java/
80
81distclean: clean
82 rm -f Makefile config.cache config.h config.log stamp-h config.status
83 for subdir in $(COMPILEDIRS); do \
84 echo cleaning $@ in $$subdir; \
85 (cd $$subdir && $(MAKE) distclean) || exit 1; \
86 done
87
88clean:
89 for subdir in $(COMPILEDIRS); do \
90 echo cleaning $@ in $$subdir; \
91 (cd $$subdir && $(MAKE) clean) || exit 1; \
92 done
93
94# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
95# (and might run the wrong version of autoconf)
96#
97## For an explanation of the following Makefile rules, see node
98## `Automatic Remaking' in GNU Autoconf documentation.
99#Makefile: Makefile.in config.status
100# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
101#config.status: configure
102# ./config.status --recheck
103#configure: configure.in aclocal.m4
104# cd $(srcdir) && autoconf
105#
106#config.h: stamp-h
107#stamp-h: config.h.in config.status
108# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
109#config.h.in: stamp-h.in
110#stamp-h.in: configure.in aclocal.m4 acconfig.h
111# cd $(srcdir) && autoheader
112# $(TOUCH) $(srcdir)/stamp-h.in
113
114
115
Note: See TracBrowser for help on using the repository browser.