source: gsdl/trunk/src/protocol/win32.mak@ 15546

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

Added a new "PACKAGE_DIRS" path value in the Makefiles to make paths a bit shorter.

  • Property svn:executable set to *
File size: 2.4 KB
Line 
1###########################################################################
2#
3# win32 makefile -- src/protocol
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-2008 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
27GSDL_DIR = ..\..
28INDEXERS_DIR = $(GSDL_DIR)\indexers
29PACKAGES_DIR = $(GSDL_DIR)\packages
30COLSERVR_DIR = $(GSDL_DIR)\src\colservr
31
32
33GSDL_VC4 = 0
34DLL = 0
35DLLDEBUG = 0
36STLPATH = "$(PACKAGES_DIR)\windows\stlport\stlport"
37
38
39!IF $(GSDL_VC4)
40CPPFLAGS = -GX
41!ELSE
42CPPFLAGS = -EHsc
43!ENDIF
44
45!IF $(DLL)
46CPPFLAGS = $(CPPFLAGS) -MD
47!ELSE
48!IF ($(DLLDEBUG))
49CPPFLAGS = $(CPPFLAGS) -MDd
50!ENDIF
51!ENDIF
52
53
54AR = lib
55CC = cl
56DEFS = -D__WIN32__ -DHAVE_CONFIG_H -DPARADOCNUM -D_LITTLE_ENDIAN -DSHORT_SUFFIX -DXML_STATIC -D_CRT_SECURE_NO_DEPRECATE
57# Do NOT add the "recpt" directory here: the protocol should be independent of the receptionist!
58INCLUDES = -I"$(GSDL_DIR)" -I"$(GSDL_DIR)\lib" -I"$(COLSERVR_DIR)" -I"$(INDEXERS_DIR)\mgpp\text" \
59 -I"$(PACKAGES_DIR)\windows\gdbm\gdbm"
60
61!IF $(GSDL_VC4)
62DEFS=$(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
63INCLUDES = $(INCLUDES) -I$(STLPATH)
64!ENDIF
65
66
67COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
68
69
70.SUFFIXES:
71.SUFFIXES: .cpp .obj
72.cpp.obj:
73 $(COMPILE) $<
74
75
76SOURCES = \
77 nullproto.cpp \
78 recptproto.cpp
79
80OBJECTS = \
81 nullproto.obj \
82 recptproto.obj
83
84LIBRARY = gsdlprotocol.lib
85
86
87gsdlprotocol.lib: $(OBJECTS)
88 if EXIST gsdlprotocol.lib del gsdlprotocol.lib
89 $(AR) -nologo /out:gsdlprotocol.lib $(OBJECTS)
90
91all: $(LIBRARY)
92
93install: $(LIBRARY)
94
95clean:
96 del *.obj
97 del gsdlprotocol.lib
Note: See TracBrowser for help on using the repository browser.