source: trunk/gsdl/lib/win32.mak@ 13776

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

mg now lives in indexers instead of packages

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 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 = ..
28GSDL_VC4 = 0
29LOCAL_LIBRARY = 0
30DLL = 0
31DLLDEBUG = 0
32STLPATH = "$(GSDLHOME)\packages\windows\stlport\stlport"
33
34AR = lib
35CC = cl
36
37!IF $(GSDL_VC4)
38CPPFLAGS = -GX
39!ELSE
40CPPFLAGS = -EHsc
41!ENDIF
42
43!IF $(DLL)
44CPPFLAGS = $(CPPFLAGS) -MD
45!ELSE
46!IF ($(DLLDEBUG))
47CPPFLAGS = $(CPPFLAGS) -MDd
48!ENDIF
49!ENDIF
50
51DEFS = -D__WIN32__ -DHAVE_CONFIG_H -DPARADOCNUM -D_LITTLE_ENDIAN \
52 -DSHORT_SUFFIX -D_CRT_SECURE_NO_DEPRECATE
53INCLUDES = -I"$(GSDLHOME)" -I"$(GSDLHOME)\indexers\mg\lib"
54!IF $(GSDL_VC4)
55DEFS = $(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
56INCLUDES = $(INCLUDES) -I$(STLPATH)
57!ENDIF
58!IF $(LOCAL_LIBRARY)
59DEFS = $(DEFS) -DGSDL_LOCAL_LIBRARY
60!ENDIF
61
62COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
63
64.SUFFIXES:
65.SUFFIXES: .c .obj
66.c.obj:
67 $(COMPILE) $<
68
69.SUFFIXES: .cpp .obj
70.cpp.obj:
71 $(COMPILE) $<
72
73HEADERS = cfgread.h fileutil.h gsdlunicode.h text_t.h display.h gsdlconf.h \
74 gsdltimes.h gsdltools.h cnfgable.h cnfgator.h phrases.h md5.h
75
76SOURCES = cfgread.cpp fileutil.cpp gsdlunicode.cpp text_t.cpp display.cpp \
77 gsdltimes.cpp gsdltools.cpp cnfgable.cpp cnfgator.cpp phrases.cpp \
78 md5.cpp
79
80OBJECTS = cfgread.obj fileutil.obj gsdlunicode.obj text_t.obj display.obj \
81 gsdltimes.obj gsdltools.obj cnfgable.obj cnfgator.obj phrases.obj \
82 md5.obj
83
84all: gsdllib.lib
85
86gsdllib.lib : $(OBJECTS)
87 if EXIST gsdllib.lib del gsdllib.lib
88 $(AR) -nologo /out:gsdllib.lib $(OBJECTS)
89
90# we want gsdltools to always be compiled in case the status of
91# GSDL_LOCAL_LIBRARY has changed
92gsdltools.obj: FORCE
93
94clean:
95 del *.obj
96 del gsdllib.lib
97
98install:
99
100FORCE:
Note: See TracBrowser for help on using the repository browser.