1 | ########################################################################### |
---|
2 | # |
---|
3 | # Makefile -- gsdl runtime code |
---|
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 | srcdir = @srcdir@ |
---|
27 | |
---|
28 | PACKAGE = @PACKAGE@ |
---|
29 | VERSION = @VERSION@ |
---|
30 | |
---|
31 | @SET_MAKE@ |
---|
32 | CC = @CC@ |
---|
33 | CXX = @CXX@ |
---|
34 | CFLAGS = @CFLAGS@ |
---|
35 | CXXFLAGS = @CXXFLAGS@ |
---|
36 | LIBS = @LIBS@ |
---|
37 | MDEFINES = |
---|
38 | |
---|
39 | GSDLOS = @gsdlos@ |
---|
40 | |
---|
41 | COMPILE = $(CC) -c |
---|
42 | |
---|
43 | SOURCES = |
---|
44 | |
---|
45 | OBJECTS = |
---|
46 | |
---|
47 | ALLFILES = $(OBJECTS) |
---|
48 | |
---|
49 | |
---|
50 | # all directories should be compiled |
---|
51 | COMPILEDIRS = packages src/colservr src/protocol src/z3950 src/recpt src/corba src/oaiservr |
---|
52 | |
---|
53 | # a subset of the directories get installed |
---|
54 | INSTALLDIRS = packages src/z3950 src/recpt src/corba src/oaiservr |
---|
55 | |
---|
56 | MODULEDIRS = @MODULEDIRS@ |
---|
57 | |
---|
58 | |
---|
59 | all: |
---|
60 | for odir in $(COMPILEDIRS) $(MODULEDIRS); do \ |
---|
61 | echo making $@ in $$odir; \ |
---|
62 | (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \ |
---|
63 | done |
---|
64 | |
---|
65 | install: all |
---|
66 | for idir in $(INSTALLDIRS); do \ |
---|
67 | echo installing $$idir; \ |
---|
68 | (cd $$idir && $(MAKE) install) || exit 1; \ |
---|
69 | done |
---|
70 | |
---|
71 | distclean: clean |
---|
72 | rm -f Makefile config.cache config.h config.log stamp-h config.status |
---|
73 | for subdir in $(COMPILEDIRS); do \ |
---|
74 | echo cleaning $@ in $$subdir; \ |
---|
75 | (cd $$subdir && $(MAKE) distclean) || exit 1; \ |
---|
76 | done |
---|
77 | |
---|
78 | clean: |
---|
79 | for subdir in $(COMPILEDIRS); do \ |
---|
80 | echo cleaning $@ in $$subdir; \ |
---|
81 | (cd $$subdir && $(MAKE) clean) || exit 1; \ |
---|
82 | done |
---|
83 | |
---|
84 | # commented out - jrm21 Dec 2004 - can get confused by cvs timestamps |
---|
85 | # (and might run the wrong version of autoconf) |
---|
86 | # |
---|
87 | ## For an explanation of the following Makefile rules, see node |
---|
88 | ## `Automatic Remaking' in GNU Autoconf documentation. |
---|
89 | #Makefile: Makefile.in config.status |
---|
90 | # CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status |
---|
91 | #config.status: configure |
---|
92 | # ./config.status --recheck |
---|
93 | #configure: configure.in aclocal.m4 |
---|
94 | # cd $(srcdir) && autoconf |
---|
95 | # |
---|
96 | #config.h: stamp-h |
---|
97 | #stamp-h: config.h.in config.status |
---|
98 | # CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status |
---|
99 | #config.h.in: stamp-h.in |
---|
100 | #stamp-h.in: configure.in aclocal.m4 acconfig.h |
---|
101 | # cd $(srcdir) && autoheader |
---|
102 | # $(TOUCH) $(srcdir)/stamp-h.in |
---|
103 | |
---|
104 | |
---|
105 | |
---|