source: gsdl/trunk/Makefile.in@ 15513

Last change on this file since 15513 was 15513, checked in by mdewsnip, 16 years ago

Added src/corba to the list of directories to compile.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 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 =
[552]38
[704]39GSDLOS = @gsdlos@
40
[552]41COMPILE = $(CC) -c
42
[555]43SOURCES =
[552]44
[555]45OBJECTS =
[552]46
47ALLFILES = $(OBJECTS)
48
[13777]49# indexers are treated slightly differently as we don't want to do make all/install
50INDEXERSDIR = indexers
[15158]51# all directories should be compiled
[15513]52COMPILEDIRS = packages lib src/gdbmedit/txt2db src/gdbmedit/db2txt src/hashfile src/getpw src/phind/generate src/colservr src/protocol src/z3950 src/recpt src/corba src/oaiservr
[13777]53# a subset of the directories get installed
[15513]54INSTALLDIRS = packages src/gdbmedit/txt2db src/gdbmedit/db2txt src/hashfile src/getpw src/phind/generate src/z3950 src/recpt src/corba src/oaiservr
[552]55
[3064]56MODULEDIRS = @MODULEDIRS@
57
[559]58
[13777]59# we don't want to compile the java stuff in indexers for gs2
[552]60all:
[13777]61 for odir in $(INDEXERSDIR); do \
[559]62 echo making $@ in $$odir; \
[13777]63 (cd $$odir && $(MAKE) $(MDEFINES) nojava) || exit 1; \
64 done
65 for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
66 echo making $@ in $$odir; \
[559]67 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
[552]68 done
69
[2589]70install: all
[13777]71 for odir in $(INDEXERSDIR); do \
72 echo making $@ in $$odir; \
73 (cd $$odir && $(MAKE) $(MDEFINES) install-nojava) || exit 1; \
74 done
[559]75 for idir in $(INSTALLDIRS); do \
76 echo installing $$idir; \
77 (cd $$idir && $(MAKE) install) || exit 1; \
78 done
79
[2589]80distclean: clean
[1078]81 rm -f Makefile config.cache config.h config.log stamp-h config.status
[15158]82 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \
[555]83 echo cleaning $@ in $$subdir; \
[15158]84 (cd $$subdir && $(MAKE) distclean) || exit 1; \
[992]85 done
86
87clean:
[15158]88 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \
[992]89 echo cleaning $@ in $$subdir; \
[15158]90 (cd $$subdir && $(MAKE) clean) || exit 1; \
[555]91 done
92
[8769]93# commented out - jrm21 Dec 2004 - can get confused by cvs timestamps
94# (and might run the wrong version of autoconf)
95#
96## For an explanation of the following Makefile rules, see node
97## `Automatic Remaking' in GNU Autoconf documentation.
98#Makefile: Makefile.in config.status
99# CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
100#config.status: configure
101# ./config.status --recheck
102#configure: configure.in aclocal.m4
103# cd $(srcdir) && autoconf
104#
105#config.h: stamp-h
106#stamp-h: config.h.in config.status
107# CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
108#config.h.in: stamp-h.in
109#stamp-h.in: configure.in aclocal.m4 acconfig.h
110# cd $(srcdir) && autoheader
111# $(TOUCH) $(srcdir)/stamp-h.in
[555]112
113
[691]114
Note: See TracBrowser for help on using the repository browser.