source: main/branches/search4j-branchtest/Makefile.in@ 34531

Last change on this file since 34531 was 29357, checked in by Jeremy Symon, 10 years ago

Undoing #29351. LDFLAGS should be set when running the configure script.

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