source: trunk/gsdl3/Makefile.in@ 7726

Last change on this file since 7726 was 7726, checked in by kjdon, 20 years ago

some mods

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 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
50SRCDIRS = packages src/java
51DOCDIRS = docs
52
53all:
54 for subdir in $(SRCDIRS); do \
55 echo making $@ in $$subdir; \
56 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
57 done
58
59docs:
60 for subdir in $(DOCDIRS); do \
61 echo making $@ in $$subdir; \
62 (cd $$subdir && $(MAKE) docs) || exit 1; \
63 done
64
65install: all
66
67 for subdir in $(SRCDIRS); do \
68 echo installing $$subdir; \
69 (cd $$subdir && $(MAKE) install) || exit 1; \
70 done
71
72distclean: clean
73 rm -f Makefile config.cache config.h config.log stamp-h config.status
74 for subdir in $(SRCDIRS) $(DOCDIRS); do \
75 echo cleaning $@ in $$subdir; \
76 (cd $$subdir && $(MAKE) distclean) || exit 1; \
77 done
78
79clean:
80 for subdir in $(SRCDIRS) $(DOCDIRS); do \
81 echo cleaning $@ in $$subdir; \
82 (cd $$subdir && $(MAKE) clean) || exit 1; \
83 done
84
85# For an explanation of the following Makefile rules, see node
86# `Automatic Remaking' in GNU Autoconf documentation.
87Makefile: Makefile.in config.status
88 CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
89config.status: configure
90 ./config.status --recheck
91configure: configure.ac aclocal.m4
92 cd $(srcdir) && autoconf
93
94config.h: stamp-h
95stamp-h: config.h.in config.status
96 CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
97config.h.in: stamp-h.in
98stamp-h.in: configure.ac aclocal.m4 acconfig.h
99 cd $(srcdir) && autoheader
100 $(TOUCH) $(srcdir)/stamp-h.in
101
102
103
Note: See TracBrowser for help on using the repository browser.