source: trunk/gsdl/src/phind/generate/Makefile.in@ 1631

Last change on this file since 1631 was 1620, checked in by paynter, 24 years ago

Phind makefiles and buildcol.pl altered so that phind is installed by the
user the first time they request a phind index, and not automatically.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1###########################################################################
2#
3# Makefile -- Makefile for phind
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright (C) 2000 Gordon Paynter
10#
11#
12# This program is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation; either version 2 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25#
26###########################################################################
27
28CC = @CC@
29CCFLAGS = -Wall @CFLAGS@
30DEFS = @DEFS@
31RANLIB = @RANLIB@
32INCLUDES =
33LDFLAGS =
34DPLIBS =
35LIBS = @LIBS@
36GSDLOS = @gsdlos@
37
38COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
39LINK = $(CC) $(LDFLAGS) -o $@
40
41.SUFFIXES:
42.SUFFIXES: .c .o
43.c.o:
44 $(COMPILE) $<
45
46.SUFFIXES: .cpp .o
47.cpp.o:
48 $(COMPILE) $<
49
50
51HEADERS = suffix.h phrase.h
52SOURCES = suffix.cpp phrase.cpp
53OBJECTS = phrase.o
54EXEC = suffix
55
56PERL_SCRIPTS = phindgen.pl
57PERL_MODULES = phproc.pm
58
59LEXICON_ENGLISH = lexicons/english/brown.sw lexicons/english/fao.sw lexicons/english/punctuation.sw
60
61all : $(EXEC)
62
63# Phind is still experimental, so it is not installed by default.
64# An explicit "make install-phind" is required to get it on your system.
65install :
66
67
68install-phind : $(EXEC)
69 install -d $(GSDLHOME)/bin/$(GSDLOS)
70 install -m 775 -s $(EXEC) $(GSDLHOME)/bin/$(GSDLOS)
71 install -d $(GSDLHOME)/bin/script
72 install -m 775 $(PERL_SCRIPTS) $(GSDLHOME)/bin/script
73 install -d $(GSDLHOME)/perllib
74 install -m 664 $(PERL_MODULES) $(GSDLHOME)/perllib
75 install -d $(GSDLHOME)/etc/phind/english
76 install -m 664 $(LEXICON_ENGLISH) $(GSDLHOME)/etc/phind/english
77
78distclean:
79 rm -f $(OBJECTS) $(EXEC) Makefile
80
81clean:
82 rm -f $(OBJECTS) $(EXEC)
83
84depend:
85 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
86
87
88# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
89
90suffix : $(OBJECTS) suffix.cpp
91 $(CC) $(DEFS) $(INCLUDES) $(CCFLAGS) -o suffix $(OBJECTS) suffix.cpp $(LIBS)
Note: See TracBrowser for help on using the repository browser.