source: gsdl/trunk/Makefile.in@ 18475

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

cgi-bin/gsdlsite.cfg can be automatically generated from cgi-bin/gsdlsite.cfg.in (substituting GSDLHOME for the value of $GSDLHOME) by running 'make configure-cgi'

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
RevLine 
[559]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###########################################################################
[1935]26srcdir = @srcdir@
[559]27
[552]28PACKAGE = @PACKAGE@
29VERSION = @VERSION@
30
31@SET_MAKE@
32CC = @CC@
[2963]33CXX = @CXX@
[552]34CFLAGS = @CFLAGS@
[2963]35CXXFLAGS = @CXXFLAGS@
[552]36LIBS = @LIBS@
[555]37MDEFINES =
[552]38
[704]39GSDLOS = @gsdlos@
40
[552]41COMPILE = $(CC) -c
42
[555]43SOURCES =
[552]44
[555]45OBJECTS =
[552]46
47ALLFILES = $(OBJECTS)
48
49
[16572]50COMPILEDIRS = common-src build-src runtime-src
[16563]51
[16572]52INSTALLDIRS = common-src build-src runtime-src
[16563]53
[3064]54MODULEDIRS = @MODULEDIRS@
55
[559]56
[16525]57# we don't want to compile the jni stuff in indexers for gs2
[552]58all:
[13777]59 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
60 echo making $@ in $$odir; \
[559]61 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
[552]62 done
63
[2589]64install: all
[559]65 for idir in $(INSTALLDIRS); do \
66 echo installing $$idir; \
67 (cd $$idir && $(MAKE) install) || exit 1; \
68 done
69
[18475]70configure-cgi:
71 @if test ! -z "$(GSDLHOME)" ; then \
72 echo "Configuring cgi-bin/gsdlsite.cfg" ; \
73 sed "s@\*\*GSDLHOME\*\*@$(GSDLHOME)@g" cgi-bin/gsdlsite.cfg.in > cgi-bin/gsdlsite.cfg ; \
74 else \
75 echo "Environment variable GSDLHOME not set. Have you run 'source setup.bash'?" ; \
76 fi
77
78
[2589]79distclean: clean
[1078]80 rm -f Makefile config.cache config.h config.log stamp-h config.status
[16563]81 for subdir in $(COMPILEDIRS); do \
[555]82 echo cleaning $@ in $$subdir; \
[15158]83 (cd $$subdir && $(MAKE) distclean) || exit 1; \
[992]84 done
85
86clean:
[16563]87 for subdir in $(COMPILEDIRS); do \
[992]88 echo cleaning $@ in $$subdir; \
[15158]89 (cd $$subdir && $(MAKE) clean) || exit 1; \
[555]90 done
91
[8769]92# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
93# (and might run the wrong version of autoconf)
94#
95## For an explanation of the following Makefile rules, see node
96## `Automatic Remaking' in GNU Autoconf documentation.
97#Makefile: Makefile.in config.status
98# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
99#config.status: configure
100# ./config.status --recheck
101#configure: configure.in aclocal.m4
102# cd $(srcdir) && autoconf
103#
104#config.h: stamp-h
105#stamp-h: config.h.in config.status
106# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
107#config.h.in: stamp-h.in
108#stamp-h.in: configure.in aclocal.m4 acconfig.h
109# cd $(srcdir) && autoheader
110# $(TOUCH) $(srcdir)/stamp-h.in
[555]111
112
[691]113
Note: See TracBrowser for help on using the repository browser.