source: trunk/gsdl/Makefile.in@ 686

Last change on this file since 686 was 683, checked in by cs025, 25 years ago

Changes to fit MG into autoconfiguration.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 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###########################################################################
26
27PACKAGE = @PACKAGE@
28VERSION = @VERSION@
29
30@SET_MAKE@
31CC = @CC@
32CPP = @CXX@
33CFLAGS = @CFLAGS@
34LIBS = @LIBS@
35MDEFINES =
36TOPSRC = `pwd`
37
38COMPILE = $(CC) -c
39
40SOURCES =
41
42OBJECTS =
43
44ALLFILES = $(OBJECTS)
45
46INSTALLDIRS = src/txt2db src/db2txt src/hashfile
47
48OTHERDIRS = packages/mg lib src/colservr src/recpt collect/cstr/src/recpt collect/niupepa/src/recpt
49
50all:
51 sed s^XXXX^$(TOPSRC)^ lib/gsdlhome.h.example > lib/gsdlhome.h
52
53 for odir in $(OTHERDIRS); do \
54 echo making $@ in $$odir; \
55 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
56 done
57
58 for idir in $(INSTALLDIRS); do \
59 echo making $@ in $$idir; \
60 (cd $$idir && $(MAKE) $(MDEFINES) $@) || exit 1; \
61 echo installing $$idir; \
62 (cd $$idir && $(MAKE) install) || exit 1; \
63 done
64
65clean:
66 rm lib/gsdlhome.h
67 for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
68 echo cleaning $@ in $$subdir; \
69 (cd $$subdir && $(MAKE) clean) || exit 1; \
70 done
71
72
73
Note: See TracBrowser for help on using the repository browser.