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

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

Putting the Makefile.in back to how it was in revision 28643 again, because the GS3 nightly binaries broke on linux 64 and 32 bit and mac lion and leopard. Compiling GS2 and GS3 on Ubuntu when using a gnome-lib-minimal remains a problem if using the GS2 makegs2.sh script or with GS3's ant install command, however if you source gnome-lib's devel.bash before running make for GS2 or before running ant install for GS3, it compiles successfully.

  • Property svn:executable set to *
File size: 3.2 KB
RevLine 
[16565]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
[28643]28SHELL = /bin/bash
[16565]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
[20873]51COMPILEDIRS = packages src/hashfile src/phind/generate src/java/org/nzdl/gsdl
[16565]52# a subset of the directories get installed
[20873]53INSTALLDIRS = packages src/hashfile src/phind/generate
[16565]54
55MODULEDIRS = @MODULEDIRS@
56
[28308]57ENABLE_GNOMELIB_EXT=@ENABLE_GNOMELIB_EXT@
[16565]58
[28308]59
[16565]60all:
[28838]61 if test $(ENABLE_GNOMELIB_EXT) = 1; then \
62 if test -d ../ext/gnome-lib; then \
63 pushd ../ext/gnome-lib && source ./devel.bash && popd; \
64 elif test -d ../ext/gnome-lib-minimal; then \
65 pushd ../ext/gnome-lib-minimal && source ./devel.bash && popd; \
66 fi; \
67 fi
[16565]68 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
69 echo making $@ in $$odir; \
[28839]70 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
[16565]71 done
72
73install: all
74 for idir in $(INSTALLDIRS); do \
75 echo installing $$idir; \
76 (cd $$idir && $(MAKE) install) || exit 1; \
77 done
[20873]78 cp src/java/org/nzdl/gsdl/ApplyXSLT.jar ../bin/java/
[16565]79
80distclean: clean
81 rm -f Makefile config.cache config.h config.log stamp-h config.status
82 for subdir in $(COMPILEDIRS); do \
83 echo cleaning $@ in $$subdir; \
84 (cd $$subdir && $(MAKE) distclean) || exit 1; \
85 done
86
87clean:
88 for subdir in $(COMPILEDIRS); do \
89 echo cleaning $@ in $$subdir; \
90 (cd $$subdir && $(MAKE) clean) || exit 1; \
91 done
92
93# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
94# (and might run the wrong version of autoconf)
95#
96## For an explanation of the following Makefile rules, see node
97## `Automatic Remaking' in GNU Autoconf documentation.
98#Makefile: Makefile.in config.status
99# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
100#config.status: configure
101# ./config.status --recheck
102#configure: configure.in aclocal.m4
103# cd $(srcdir) && autoconf
104#
105#config.h: stamp-h
106#stamp-h: config.h.in config.status
107# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
108#config.h.in: stamp-h.in
109#stamp-h.in: configure.in aclocal.m4 acconfig.h
110# cd $(srcdir) && autoheader
111# $(TOUCH) $(srcdir)/stamp-h.in
112
113
114
Note: See TracBrowser for help on using the repository browser.