source: main/tags/2.41/gsdl/Makefile.in@ 25339

Last change on this file since 25339 was 3069, checked in by sjboddie, 22 years ago

Commented out new part of Makefile for making modules. This currently fails
if no modules are specified.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 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 =
38TOPSRC = `pwd`
39
40GSDLOS = @gsdlos@
41
42COMPILE = $(CC) -c
43
44SOURCES =
45
46OBJECTS =
47
48ALLFILES = $(OBJECTS)
49
50INSTALLDIRS = src/recpt src/txt2db src/db2txt src/hashfile src/getpw packages/mg src/phind/generate packages src/mgpp
51
52MODULEDIRS = @MODULEDIRS@
53
54OTHERDIRS = packages packages/mg lib src/mgpp src/colservr src/recpt src/txt2db src/db2txt src/hashfile src/getpw src/phind/generate
55
56all:
57 for odir in $(OTHERDIRS); do \
58 echo making $@ in $$odir; \
59 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
60 done
61
62# for odir in $(MODULEDIRS); do \
63# echo making $@ in $$odir; \
64# (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
65# done
66
67install: all
68
69 for idir in $(INSTALLDIRS); do \
70 echo installing $$idir; \
71 (cd $$idir && $(MAKE) install) || exit 1; \
72 done
73
74# added test to check existence of Makefile, as src/recpt is in
75# both INSTALLDIRS and OTHERDIRS - can't make distclean twice!
76distclean: clean
77 rm -f Makefile config.cache config.h config.log stamp-h config.status
78 for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
79 echo cleaning $@ in $$subdir; \
80 (cd $$subdir && if test -e Makefile; then $(MAKE) distclean;fi) || exit 1; \
81 done
82
83clean:
84 for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
85 echo cleaning $@ in $$subdir; \
86 (cd $$subdir && $(MAKE) clean) || exit 1; \
87 done
88
89# For an explanation of the following Makefile rules, see node
90# `Automatic Remaking' in GNU Autoconf documentation.
91Makefile: Makefile.in config.status
92 CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
93config.status: configure
94 ./config.status --recheck
95configure: configure.in aclocal.m4
96 cd $(srcdir) && autoconf
97
98config.h: stamp-h
99stamp-h: config.h.in config.status
100 CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
101config.h.in: stamp-h.in
102stamp-h.in: configure.in aclocal.m4 acconfig.h
103 cd $(srcdir) && autoheader
104 $(TOUCH) $(srcdir)/stamp-h.in
105
106
107
Note: See TracBrowser for help on using the repository browser.