source: main/tags/2.80/gsdl/src/db2txt/Makefile.in@ 24525

Last change on this file since 24525 was 7264, checked in by davidb, 20 years ago

Tweaked Make file's link command to use C++ not cc since
source code compiled is C++

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1###########################################################################
2#
3# Makefile -- Makefile for db2txt
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
31CC = @CC@
32CPP = @CXX@
33CCFLAGS = -Wall @CFLAGS@
34DEFS = @DEFS@
35RANLIB = @RANLIB@
36INCLUDES = -I../../lib @GDBM_INCLUDE@
37LDFLAGS = @LDFLAGS@
38DPLIBS =
39LIBS = @GDBM_LIBPATH@ -lgdbm @LIBS@
40GSDLOS = @gsdlos@
41INSTALL = @INSTALL@
42
43COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
44CPPCOMPILE = $(CPP) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
45LINK = $(CC) $(LDFLAGS) -o $@
46CPPLINK = $(CPP) $(LDFLAGS) -o $@
47
48.SUFFIXES:
49.SUFFIXES: .c .o
50.c.o:
51 $(COMPILE) $<
52
53.SUFFIXES: .cpp .o
54.cpp.o:
55 $(CPPCOMPILE) $<
56
57
58HEADERS =
59
60SOURCES = db2txt.cpp
61
62OBJECTS = db2txt.o
63
64EXEC = db2txt
65
66all : $(EXEC)
67
68install: $(EXEC)
69 $(INSTALL) -d ../../bin/$(GSDLOS)
70 $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
71
72distclean:
73 rm -f $(OBJECTS) $(EXEC) Makefile
74
75clean:
76 rm -f $(OBJECTS) $(EXEC)
77
78depend:
79 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
80
81
82# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
83
84DB2TXT_OBJS = db2txt.o
85
86db2txt: $(DB2TXT_OBJS) $(DPLIBS)
87 $(CPPLINK) $(DB2TXT_OBJS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.