source: gsdl/trunk/common-src/src/gdbmedit/txt2db/Makefile.in@ 16605

Last change on this file since 16605 was 16605, checked in by davidb, 16 years ago

Fix to GSDL_DIR so binaries installed in correct top-level folder

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
RevLine 
[552]1###########################################################################
2#
[15931]3# Makefile -- src/gdbmedit/txt2db
[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#
[15931]8# Copyright (C) 1999-2008 The New Zealand Digital Library Project
[558]9#
[15931]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
[16603]27GSDL_DIR = ../../../..
[16605]28COMMON_DIR = $(GSDL_DIR)/common-src
29INDEXERS_DIR = $(COMMON_DIR)/indexers
[15931]30
31
[15551]32CXX = @CXX@
[15931]33CXXFLAGS = @CXXFLAGS@ @COMPAT32BITFLAGS@
[552]34DEFS = @DEFS@
[558]35GSDLOS = @gsdlos@
[15931]36INCLUDES = @GDBM_INCLUDE@ -I$(GSDL_DIR)/src/lib
[2900]37INSTALL = @INSTALL@
[15931]38LDFLAGS = @LDFLAGS@ @COMPAT32BITFLAGS@
39LIBS = @GDBM_LIBPATH@ -lgdbm @LIBS@
40
41
42CXXCOMPILE = $(CXX) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
[15551]43CXXLINK = $(CXX) $(LDFLAGS) -o $@
[15931]44
45
[552]46.SUFFIXES:
47.SUFFIXES: .cpp .o
48.cpp.o:
[15551]49 $(CXXCOMPILE) $<
[552]50
51
[15931]52SOURCES = \
53 txt2db.cpp
[552]54
[15931]55OBJECTS = \
[15936]56 txt2db.o
[552]57
[15931]58GSDL_LIBS = \
[16605]59 $(COMMON_DIR)/src/lib/gsdllib.a \
[15931]60 $(INDEXERS_DIR)/mg/lib/libmglib.a
[552]61
[15931]62EXECUTABLE_OBJECTS = \
63 $(OBJECTS) \
64 $(GSDL_LIBS)
[552]65
[15931]66EXECUTABLE = txt2db
[992]67
[552]68
[15931]69# Default target: make the txt2db executable
70all: $(EXECUTABLE)
[552]71
[15931]72txt2db: $(EXECUTABLE_OBJECTS)
73 $(CXXLINK) $(EXECUTABLE_OBJECTS) $(LIBS)
[552]74
[15931]75install: $(EXECUTABLE)
76 $(INSTALL) -d $(GSDL_DIR)/bin/$(GSDLOS)
77 $(INSTALL) -m 755 -s $(EXECUTABLE) $(GSDL_DIR)/bin/$(GSDLOS)
[552]78
[15931]79clean:
80 rm -f $(OBJECTS) $(EXECUTABLE)
[552]81
[15931]82distclean:
83 rm -f $(OBJECTS) $(EXECUTABLE) Makefile
[579]84
[15931]85depend:
86 makedepend -Y -- $(DEFS) $(INCLUDES) $(CXXFLAGS) -- $(SOURCES)
Note: See TracBrowser for help on using the repository browser.