source: main/trunk/greenstone2/build-src/src/phind/generate/win32.mak@ 22960

Last change on this file since 22960 was 22960, checked in by ak19, 14 years ago

Added in DEBUG flags to LDFLAGS where missing

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