source: main/trunk/greenstone2/build-src/src/hashfile/Makefile.in@ 26820

Last change on this file since 26820 was 26820, checked in by davidb, 11 years ago

Strip added as separate stage to help when cross-compiling

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
RevLine 
[552]1###########################################################################
2#
[15915]3# Makefile -- src/hashfile
[558]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.
[552]7#
[15915]8# Copyright (C) 1999-2008 The New Zealand Digital Library Project
[558]9#
10#
[552]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
[16604]27GSDL_DIR = ../../..
[15915]28
29
[2998]30CXX = @CXX@
[25149]31CXXFLAGS = @CXXFLAGS@ @ARCH_DEP_FLAGS@
[552]32DEFS = @DEFS@
[15916]33GSDLOS = @gsdlos@
[15924]34INCLUDES =
[26820]35STRIP = @STRIP@
[2900]36INSTALL = @INSTALL@
[25149]37LDFLAGS = @LDFLAGS@ @ARCH_DEP_FLAGS@
[15915]38LIBS = @LIBS@
39
40
41CXXCOMPILE = $(CXX) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
42CXXLINK = $(CXX) $(LDFLAGS) -o $@
43
44
[552]45.SUFFIXES:
46.SUFFIXES: .cpp .o
47.cpp.o:
[15915]48 $(CXXCOMPILE) $<
[552]49
50
[15915]51SOURCES = \
52 hashfile.cpp
[552]53
[15915]54OBJECTS = \
[15937]55 hashfile.o
[552]56
[15915]57EXECUTABLE_OBJECTS = \
58 $(OBJECTS)
[552]59
[15915]60EXECUTABLE = hashfile
61
62
63# Default target: make the hashfile executable
64all: $(EXECUTABLE)
65
66hashfile: $(EXECUTABLE_OBJECTS)
67 $(CXXLINK) $(EXECUTABLE_OBJECTS) $(LIBS)
68
69install: $(EXECUTABLE)
[15916]70 $(INSTALL) -d $(GSDL_DIR)/bin/$(GSDLOS)
[26820]71 $(STRIP) $(EXECUTABLE)
72 $(INSTALL) -m 755 $(EXECUTABLE) $(GSDL_DIR)/bin/$(GSDLOS)
[552]73
[15915]74clean:
75 rm -f $(OBJECTS) $(EXECUTABLE)
76
[992]77distclean:
[15915]78 rm -f $(OBJECTS) $(EXECUTABLE) Makefile
[992]79
[552]80depend:
[15552]81 makedepend -Y -- $(DEFS) $(INCLUDES) $(CXXFLAGS) -- $(SOURCES)
Note: See TracBrowser for help on using the repository browser.