source: main/tags/2.81rc2/search4j/Makefile.in@ 33217

Last change on this file since 33217 was 17496, checked in by oranfry, 16 years ago

GNU style build files for search4j

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1###########################################################################
2#
3# Makefile for search4j used by Greenstone
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
27bindir = @bindir@
28
29CXX = @CXX@
30CXXFLAGS = @CXXFLAGS@
31DEFS = @DEFS@
32GSDLOS = @gsdlos@
33INCLUDES =
34INSTALL = @INSTALL@
35LDFLAGS = @LDFLAGS@
36LIBS = @LIBS@
37
38
39CXXCOMPILE = $(CXX) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
40CXXLINK = $(CXX) $(LDFLAGS) -o $@
41
42
43.SUFFIXES:
44.SUFFIXES: .cpp .o
45.cpp.o:
46 $(CXXCOMPILE) $<
47
48
49SOURCES = \
50 libsearch4j.cpp \
51 search4j.cpp
52
53OBJECTS = \
54 libsearch4j.o \
55 search4j.o
56
57EXECUTABLE_OBJECTS = \
58 $(OBJECTS)
59
60EXECUTABLE = search4j
61
62
63# Default target: make the search4j executable
64all: $(EXECUTABLE)
65
66search4j: $(EXECUTABLE_OBJECTS)
67 $(CXXLINK) $(EXECUTABLE_OBJECTS) $(LIBS)
68
69install: $(EXECUTABLE)
70 $(INSTALL) -d $(bindir)
71 $(INSTALL) -m 755 -s $(EXECUTABLE) $(bindir)
72
73clean:
74 rm -f $(OBJECTS) $(EXECUTABLE)
75
76distclean:
77 rm -f $(OBJECTS) $(EXECUTABLE) Makefile
78
79depend:
80 makedepend -Y -- $(DEFS) $(INCLUDES) $(CXXFLAGS) -- $(SOURCES)
Note: See TracBrowser for help on using the repository browser.