source: other-projects/trunk/gs2build-extra/lib.win32.mak@ 16299

Last change on this file since 16299 was 13858, checked in by kjdon, 17 years ago

modified windows makefiles to use new indexers package

  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1###########################################################################
2#
3# win32 makefile -- lib
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
45DEFS = -D__WIN32__ -DHAVE_CONFIG_H -DPARADOCNUM -D_LITTLE_ENDIAN \
46 -DSHORT_SUFFIX
47INCLUDES = -I"$(GSDLHOME)" -I"$(GSDLHOME)\indexers\mg\lib"
48!IF $(USE_STLPORT)
49DEFS = $(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
50INCLUDES = $(INCLUDES) -I$(STLPATH)
51!ENDIF
52
53COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
54
55.SUFFIXES:
56.SUFFIXES: .c .obj
57.c.obj:
58 $(COMPILE) $<
59
60.SUFFIXES: .cpp .obj
61.cpp.obj:
62 $(COMPILE) $<
63
64HEADERS = text_t.h gsdlconf.h
65
66SOURCES = text_t.cpp
67
68OBJECTS = text_t.obj
69
70all: gsdllib.lib
71
72gsdllib.lib : $(OBJECTS)
73 if EXIST gsdllib.lib del gsdllib.lib
74 $(AR) /out:gsdllib.lib $(OBJECTS)
75
76clean:
77 del *.obj
78 del gsdllib.lib
79
80install:
81
Note: See TracBrowser for help on using the repository browser.