source: trunk/gsdl/src/gdbmset/Makefile.in@ 12844

Last change on this file since 12844 was 12844, checked in by mdewsnip, 18 years ago

Incremental building and dynamic GDBM updating code, many thanks to John Rowe and John Thompson at DL Consulting Ltd.

  • 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 = gdbmset.cpp
61
62OBJECTS = gdbmset.o
63
64EXEC = gdbmset
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
83GDBMSET_OBJS = gdbmset.o
84
85gdbmset: $(GDBMSET_OBJS) $(DPLIBS)
86 $(LINK) $(GDBMSET_OBJS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.