source: main/tags/2.26/niupepa/Makefile.in

Last change on this file was 1077, checked in by sjboddie, 24 years ago

added configuration stuff for niupepa collection receptionist

  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1###########################################################################
2#
3# Makefile -- niupepa
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
38GSDLOS = @gsdlos@
39
40COMPILE = $(CC) -c
41
42SOURCES =
43
44OBJECTS =
45
46ALLFILES = $(OBJECTS)
47
48DIRS = src/recpt
49
50all:
51 for odir in $(DIRS); do \
52 echo making $@ in $$odir; \
53 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
54 done
55
56install:
57 for idir in $(DIRS); do \
58 echo installing $$idir; \
59 (cd $$idir && $(MAKE) install) || exit 1; \
60 done
61
62distclean:
63 rm -f Makefile config.cache config.h config.log stamp-h config.status
64 for subdir in $(DIRS); do \
65 echo cleaning $@ in $$subdir; \
66 (cd $$subdir && $(MAKE) distclean) || exit 1; \
67 done
68
69clean:
70 for subdir in $(DIRS); do \
71 echo cleaning $@ in $$subdir; \
72 (cd $$subdir && $(MAKE) clean) || exit 1; \
73 done
74
75
76# For an explanation of the following Makefile rules, see node
77# `Automatic Remaking' in GNU Autoconf documentation.
78Makefile: Makefile.in config.status
79 CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
80config.status: configure
81 ./config.status --recheck
82configure: configure.in aclocal.m4
83 cd $(srcdir) && autoconf
84
85config.h: stamp-h
86stamp-h: config.h.in config.status
87 CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
88config.h.in: stamp-h.in
89stamp-h.in: configure.in aclocal.m4 acconfig.h
90 cd $(srcdir) && autoheader
91 $(TOUCH) $(srcdir)/stamp-h.in
92
93
94
Note: See TracBrowser for help on using the repository browser.