source: gsdl/trunk/src/hashfile/Makefile.in@ 14171

Last change on this file since 14171 was 2998, checked in by jrm21, 22 years ago

Need to use CXX instead of CC so that we use the c++ compiler.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1###########################################################################
2#
3# Makefile -- Makefile for hashfile
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 Rodger McNab, Stefan Boddie
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# @(#)Makefile.in 1.3 16 Mar 1994
26#
27###########################################################################
28
29
30AR = ar
31CXX = @CXX@
32CXXFLAGS = @CXXFLAGS@
33DEFS = @DEFS@
34RANLIB = @RANLIB@
35INCLUDES = -I../../lib
36LDFLAGS = @LDFLAGS@
37LIBS = ../../lib/gsdllib.a
38GSDLOS = @gsdlos@
39INSTALL = @INSTALL@
40
41COMPILE = $(CXX) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
42LINK = $(CXX) $(LDFLAGS) -o $@
43
44.SUFFIXES:
45.SUFFIXES: .c .o
46.c.o:
47 $(COMPILE) $<
48
49.SUFFIXES: .cpp .o
50.cpp.o:
51 $(COMPILE) $<
52
53
54HEADERS =
55
56SOURCES = hashfile.cpp
57
58OBJECTS = hashfile.o
59
60EXEC = hashfile
61
62all : $(EXEC)
63
64install: $(EXEC)
65 $(INSTALL) -d ../../bin/$(GSDLOS)
66 $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
67
68distclean:
69 rm -f $(OBJECTS) $(EXEC) Makefile
70
71clean:
72 rm -f $(OBJECTS) $(EXEC)
73
74depend:
75 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
76
77
78# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
79
80HASHFILE_OBJS = hashfile.o
81
82hashfile: $(HASHFILE_OBJS) $(LIBS)
83 $(LINK) $(HASHFILE_OBJS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.