source: trunk/gsdl/src/colservr/win32.mak@ 9175

Last change on this file since 9175 was 9129, checked in by mdewsnip, 19 years ago

Fixed up Windows makefiles so Expat is compiled into all the binaries for the Lucene stuff.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1###########################################################################
2#
3# win32 makefile -- src/colservr
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 The New Zealand Digital Library Project
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###########################################################################
26
27GSDLHOME = ..\..
28USE_STLPORT = 0
29DLL = 0
30DLLDEBUG = 0
31STLPATH = "$(GSDLHOME)\packages\windows\stlport\stlport"
32
33AR = lib
34CC = cl
35
36CPPFLAGS = -GX
37!IF $(DLL)
38CPPFLAGS = $(CPPFLAGS) -MD
39!ELSE
40!IF ($(DLLDEBUG))
41CPPFLAGS = $(CPPFLAGS) -MDd
42!ENDIF
43!ENDIF
44
45LDFLAGS =
46DEFS = -D__WIN32__ -DHAVE_CONFIG_H -DPARADOCNUM -D_LITTLE_ENDIAN -DSHORT_SUFFIX
47INCLUDES = -I"$(GSDLHOME)" -I"$(GSDLHOME)\lib" -I"$(GSDLHOME)\src\colservr" \
48 -I"$(GSDLHOME)\src\recpt" -I"$(GSDLHOME)\packages\mg" \
49 -I"$(GSDLHOME)\packages\mg\lib" -I"$(GSDLHOME)\packages\mg\src\text" \
50 -I"$(GSDLHOME)\packages\windows\gdbm\gdbm" \
51 -I"$(GSDLHOME)\src\mgpp\lib" -I"$(GSDLHOME)\src\mgpp\text" \
52 -I"$(GSDLHOME)\packages\windows\expat"
53
54!IF $(USE_STLPORT)
55DEFS=$(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
56INCLUDES = $(INCLUDES) -I$(STLPATH)
57!ENDIF
58
59LIBS =
60
61COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
62LINK = $(CC) $(LDFLAGS) -o $@
63
64.SUFFIXES:
65.SUFFIXES: .c .obj
66.c.obj:
67 $(COMPILE) $<
68
69.SUFFIXES: .cpp .obj
70.cpp.obj:
71 $(COMPILE) $<
72
73HEADERS = mgq.h search.h mgsearch.h querycache.h queryinfo.h collectserver.h \
74 colservrconfig.h maptools.h filter.h source.h browsefilter.h \
75 queryfilter.h mgqueryfilter.h mggdbmsource.h phrasesearch.h \
76 phrasequeryfilter.h collectset.h mgppsearch.h mgppqueryfilter.h \
77 lucenegdbmsource.h lucenequeryfilter.h lucenesearch.h \
78 expat_resultset.h
79
80SOURCES = mgq.c search.cpp mgsearch.cpp querycache.cpp queryinfo.cpp \
81 collectserver.cpp colservrconfig.cpp maptools.cpp filter.cpp \
82 source.cpp browsefilter.cpp queryfilter.cpp mgqueryfilter.cpp \
83 mggdbmsource.cpp phrasesearch.cpp phrasequeryfilter.cpp \
84 collectset.cpp mgppsearch.cpp mgppqueryfilter.cpp \
85 lucenegdbmsource.cpp lucenequeryfilter.cpp lucenesearch.cpp \
86 expat_resultset.cpp
87
88OBJECTS = mgq.obj search.obj mgsearch.obj querycache.obj queryinfo.obj \
89 collectserver.obj colservrconfig.obj maptools.obj filter.obj \
90 source.obj browsefilter.obj queryfilter.obj mgqueryfilter.obj \
91 mggdbmsource.obj phrasesearch.obj phrasequeryfilter.obj \
92 collectset.obj mgppsearch.obj mgppqueryfilter.obj \
93 lucenegdbmsource.obj lucenequeryfilter.obj lucenesearch.obj \
94 expat_resultset.obj
95
96all : gsdlcolservr.lib
97
98gsdlcolservr.lib : $(OBJECTS)
99 if EXIST gsdlcolservr.lib del gsdlcolservr.lib
100 $(AR) /out:gsdlcolservr.lib $(OBJECTS)
101
102clean:
103 del *.obj
104 del gsdlcolservr.lib
105
106install:
Note: See TracBrowser for help on using the repository browser.