source: trunk/gsdl/Makefile.in@ 3044

Last change on this file since 3044 was 2963, checked in by jrm21, 22 years ago

replaced CPP with CXX (although it is not currently used within this
Makefile)

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