source: gsdl/trunk/src/protocol/Makefile.in@ 15580

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

Hopefully the last of the makefile tidy ups.

  • Property svn:executable set to *
File size: 2.1 KB
RevLine 
[15450]1###########################################################################
2#
3# Makefile -- src/protocol
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-2008 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
[15470]27GSDL_DIR = ../..
28INDEXERS_DIR = $(GSDL_DIR)/indexers
[15546]29PACKAGES_DIR = $(GSDL_DIR)/packages
[15470]30COLSERVR_DIR = $(GSDL_DIR)/src/colservr
[15450]31
[15475]32
[15479]33AR = ar
[15556]34CXX = @CXX@
35CXXFLAGS = @CXXFLAGS@ @COMPAT32BITFLAGS@
[15470]36DEFS = @DEFS@ -DNZDL -DQUIET -DSHORT_SUFFIX -DPARADOCNUM -DGSDLSERVER
[15450]37# Do NOT add the "recpt" directory here: the protocol should be independent of the receptionist!
[15510]38INCLUDES = @GDBM_INCLUDE@ -I. -I$(GSDL_DIR) -I$(GSDL_DIR)/lib -I$(COLSERVR_DIR) -I$(INDEXERS_DIR)/mgpp/text
[15479]39RANLIB = @RANLIB@
[15450]40
41
[15556]42CXXCOMPILE = $(CXX) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
[15450]43
[15470]44
[15450]45.SUFFIXES:
46.SUFFIXES: .cpp .o
47.cpp.o:
[15556]48 $(CXXCOMPILE) $<
[15450]49
50
[15470]51SOURCES = \
52 nullproto.cpp \
[15572]53 recptproto.cpp \
54 recptprototools.cpp
[15450]55
[15470]56OBJECTS = \
57 nullproto.o \
[15572]58 recptproto.o \
59 recptprototools.o
[15450]60
[15479]61LIBRARY = gsdlprotocol.a
[15450]62
63
[15579]64# Default target: make gsdlprotocol.a
65all: $(LIBRARY)
66
[15479]67gsdlprotocol.a: $(OBJECTS)
[15579]68 rm -f $(LIBRARY)
69 $(AR) cru $(LIBRARY) $(OBJECTS)
70 $(RANLIB) $(LIBRARY)
[15470]71
[15580]72install:
[15479]73
[15450]74clean:
[15579]75 rm -f $(OBJECTS) $(LIBRARY)
[15450]76
[15470]77distclean:
[15579]78 rm -f $(OBJECTS) $(LIBRARY) Makefile
[15450]79
80depend:
[15556]81 makedepend -Y -- $(DEFS) $(INCLUDES) $(CXXFLAGS) -- $(SOURCES)
Note: See TracBrowser for help on using the repository browser.