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

Last change on this file since 15471 was 15461, checked in by mdewsnip, 16 years ago

Oops, accidently added a bit of CORBA stuff into this file.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.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 = ..
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 = \
74 cfgread.h cnfgable.h cnfgator.h dbclass.h \
75 display.h fileutil.h gdbmclass.h gsdlsitecfg.h \
76 gsdltimes.h gsdltools.h gsdlunicode.h infodbclass.h \
77 md5.h OIDtools.h phrases.h text_t.h \
78 gsdlconf.h
79
80SOURCES = \
81 cfgread.cpp cnfgable.cpp cnfgator.cpp dbclass.cpp \
82 display.cpp fileutil.cpp gdbmclass.cpp gsdlsitecfg.cpp \
83 gsdltimes.cpp gsdltools.cpp gsdlunicode.cpp infodbclass.cpp \
84 md5.cpp OIDtools.cpp phrases.cpp text_t.cpp
85
86OBJECTS = \
87 cfgread.o cnfgable.o cnfgator.o dbclass.o \
88 display.o fileutil.o gdbmclass.o gsdlsitecfg.o \
89 gsdltimes.o gsdltools.o gsdlunicode.o infodbclass.o \
90 md5.o OIDtools.o phrases.o text_t.o
91
92
93all: gsdllib.lib
94
95gsdllib.lib : $(OBJECTS)
96 if EXIST gsdllib.lib del gsdllib.lib
97 $(AR) -nologo /out:gsdllib.lib $(OBJECTS)
98
99# we want gsdltools to always be compiled in case the status of
100# GSDL_LOCAL_LIBRARY has changed
101gsdltools.obj: FORCE
102
103clean:
104 del *.obj
105 del gsdllib.lib
106
107install:
108
109FORCE:
Note: See TracBrowser for help on using the repository browser.