source: gsdl/trunk/build-src/src/phind/generate/win32.mak@ 19520

Last change on this file since 19520 was 19520, checked in by ak19, 15 years ago

Dr Bainbridge updated the Windows makefiles to 1. Take the DEBUG flag so that we can recompile all of GS2 in the Vis C++ 2005 Express Edition command prompt and then use its Debugger on the C code. 2. Now GS2 make clean command cleans

  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1###########################################################################
2#
3# win32 makefile -- src/phind/generate
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) 2001 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 = ..\..\..\..
28DEBUG = 0
29GSDL_VC4 = 0
30STLPATH = "$(GSDLHOME)\common-src\packages\windows\stlport\stlport"
31
32AR = lib
33CC = cl
34
35!IF $(DEBUG)
36CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
37!ELSE
38CXXFLAGS =
39!ENDIF
40
41!IF $(GSDL_VC4)
42CXXFLAGS = $(CXXFLAGS) -GX
43!ELSE
44CXXFLAGS = $(CXXFLAGS) -EHsc
45!ENDIF
46
47LDFLAGS =
48DEFS = -D__WIN32__
49INCLUDES =
50!IF $(GSDL_VC4)
51DEFS = $(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS -D_CRT_SECURE_NO_DEPRECATE
52INCLUDES = $(INCLUDES) -I$(STLPATH)
53!ENDIF
54LIBS=
55
56COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
57LINK = $(CC) -nologo $(LDFLAGS)
58
59.SUFFIXES:
60.SUFFIXES: .c .obj
61.c.obj:
62 $(COMPILE) $<
63
64.SUFFIXES: .cpp .obj
65.cpp.obj:
66 $(COMPILE) $<
67
68HEADERS = suffix.h phrase.h
69SOURCES = suffix.cpp phrase.cpp
70OBJECTS = suffix.obj phrase.obj
71EXEC = suffix.exe
72
73all: $(EXEC)
74
75install:
76 copy $(EXEC) "$(GSDLHOME)\bin\windows"
77
78clean:
79 del *.obj
80 del $(EXEC)
81
82suffix.exe: $(OBJECTS)
83 $(LINK) $(OBJECTS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.