source: gsdl/stable/Makefile.in@ 19568

Last change on this file since 19568 was 19262, checked in by davidb, 15 years ago

Need to do 'clean' and 'distclean' on SPECIAL_COMPILEDIRS as well

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 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
57
58# we don't want to compile the jni stuff in indexers for gs2
59all:
60 for odir in $(SPECIAL_COMPILEDIRS); do \
61 echo making gs2 in $$odir; \
62 (cd $$odir && $(MAKE) $(MDEFINES) gs2) || exit 1; \
63 done
64 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
65 echo making $@ in $$odir; \
66 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
67 done
68
69install: all
70 for idir in $(SPECIAL_INSTALLDIRS); do \
71 echo installing $$idir; \
72 (cd $$idir && $(MAKE) install-gs2) || exit 1; \
73 done
74 for idir in $(INSTALLDIRS); do \
75 echo installing $$idir; \
76 (cd $$idir && $(MAKE) install) || exit 1; \
77 done
78
79apache-for-dist:
80 (cd runtime-src/packages && $(MAKE) apache-for-dist) || exit 1;
81
82# include the Greenstone Server Interface Makefile here
83include GSI-Makefile
84
85distclean: clean
86 rm -f Makefile config.cache config.h config.log stamp-h config.status
87 for subdir in $(SPECIAL_COMPILEDIRS) $(COMPILEDIRS); do \
88 echo cleaning $@ in $$subdir; \
89 (cd $$subdir && $(MAKE) distclean) || exit 1; \
90 done
91
92clean:
93 for subdir in $(SPECIAL_COMPILEDIRS) $(COMPILEDIRS); do \
94 echo cleaning $@ in $$subdir; \
95 (cd $$subdir && $(MAKE) clean) || exit 1; \
96 done
97
98# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
99# (and might run the wrong version of autoconf)
100#
101## For an explanation of the following Makefile rules, see node
102## `Automatic Remaking' in GNU Autoconf documentation.
103#Makefile: Makefile.in config.status
104# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
105#config.status: configure
106# ./config.status --recheck
107#configure: configure.in aclocal.m4
108# cd $(srcdir) && autoconf
109#
110#config.h: stamp-h
111#stamp-h: config.h.in config.status
112# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
113#config.h.in: stamp-h.in
114#stamp-h.in: configure.in aclocal.m4 acconfig.h
115# cd $(srcdir) && autoheader
116# $(TOUCH) $(srcdir)/stamp-h.in
117
118
119
Note: See TracBrowser for help on using the repository browser.