source: trunk/gsdl/src/txt2db/Makefile.in@ 2699

Last change on this file since 2699 was 2371, checked in by jrm21, 23 years ago

Minor changes, so compilation works when libgdbm is not in system paths - this
happens on non-linux machines.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
RevLine 
[552]1###########################################################################
2#
3# Makefile -- Makefile for 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#
[558]8# Copyright (C) 1999 Rodger McNab, Stefan Boddie
9#
[552]10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24# @(#)Makefile.in 1.3 16 Mar 1994
25#
26###########################################################################
27
28
29AR = ar
30CC = @CC@
[1860]31CPP = @CXX@
[577]32CCFLAGS = -Wall @CFLAGS@
[552]33DEFS = @DEFS@
34RANLIB = @RANLIB@
[2371]35INCLUDES = -I../../lib @GDBM_INCLUDE@
[580]36LDFLAGS = @LDFLAGS@
[579]37DPLIBS = ../../lib/gsdllib.a ../../packages/mg/lib/unitool.o
[2371]38LIBS = ../../lib/gsdllib.a ../../packages/mg/lib/unitool.o @GDBM_LIBPATH@ -lgdbm @LIBS@
[558]39GSDLOS = @gsdlos@
[552]40
41
42COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
[1860]43CPPCOMPILE = $(CPP) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
[2133]44MCOMPILE = ../../bin/linux/mico-c++ $(MCFLAGS) $(DEFS) $(MINCLUDES) -c
[552]45LINK = $(CC) $(LDFLAGS) -o $@
[2133]46MLINK = ../../bin/linux/mico-ld $(LDFLAGS) -lmico2.2.7 -o $@
[1860]47CPPLINK = $(CPP) $(LDFLAGS) -o $@
[552]48
49.SUFFIXES:
50.SUFFIXES: .c .o
51.c.o:
52 $(COMPILE) $<
53
54.SUFFIXES: .cpp .o
55.cpp.o:
[1860]56 $(CPPCOMPILE) $<
[552]57
[1860]58.SUFFIXES: .mpp .o
59.mpp.o:
60 $(MCOMPILE) $<
[552]61
62HEADERS =
63
64SOURCES = txt2db.cpp
65
66OBJECTS = txt2db.o
67
68EXEC = txt2db
69
70all : $(EXEC)
71
72install: $(EXEC)
[1004]73 install -d ../../bin/$(GSDLOS)
74 install -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
[552]75
[992]76distclean:
77 rm -f $(OBJECTS) $(EXEC) Makefile
78
[552]79clean:
80 rm -f $(OBJECTS) $(EXEC)
81
82depend:
83 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
84
85
86# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
87
88TXT2DB_OBJS = txt2db.o
89
[579]90txt2db: $(TXT2DB_OBJS) $(DPLIBS)
[1862]91 $(LINK) $(TXT2DB_OBJS) $(LIBS)
[579]92
93
94
95
96
97
Note: See TracBrowser for help on using the repository browser.