source: main/trunk/greenstone2/runtime-src/Makefile.in@ 31428

Last change on this file since 31428 was 24901, checked in by ak19, 12 years ago

GSDLARCH used in Linux makefiles when working out the cgi-bin path (now cgi-bin\GSDL_OS_ARCH) to install the binaries into.

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