source: main/trunk/greenstone2/common-src/src/gdbmedit/gdbmkeys/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:executable set to *
File size: 2.3 KB
Line 
1###########################################################################
2#
3# win32 makefile -- gdbmkeys
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 = ..\..\..\..
28COMMON_DIR = ..\..\..
29
30USE_STLPORT = 0
31STLPATH = "$(COMMON_DIR)\packages\windows\stlport\stlport"
32
33AR = lib
34CC = cl
35DEBUG = 0
36GSDL_VC4 = 0
37
38!IF $(DEBUG)
39CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
40LDFLAGS = -DEBUG -Z7 /errorReport:prompt
41!ELSE
42CXXFLAGS =
43LDFLAGS =
44!ENDIF
45
46!IF $(GSDL_VC4)
47CXXFLAGS = $(CXXFLAGS) -GX
48!ELSE
49CXXFLAGS = $(CXXFLAGS) -EHsc
50!ENDIF
51
52
53DEFS = -D__WIN32__ -DHAVE_CONFIG_H
54INCLUDES = -I"$(COMMON_DIR)\src\gdbmedit\gdbmkeys" -I"$(COMMON_DIR)\src\lib" \
55 -I"$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3" -I"$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3\windows"
56!IF $(USE_STLPORT)
57DEFS=$(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
58INCLUDES = $(INCLUDES) -I$(STLPATH)
59!ENDIF
60
61LIBS = "$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3\gdbm.lib"
62
63COMPILE = $(CC) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
64LINK = $(CC) $(LDFLAGS)
65
66.SUFFIXES:
67.SUFFIXES: .cpp .obj
68.cpp.obj:
69 $(COMPILE) $<
70
71ANSI2KNR =
72o = .obj
73e = .exe
74
75HEADERS =
76
77SOURCES = gdbmkeys.cpp
78
79OBJECTS = gdbmkeys$o
80
81EXEC = gdbmkeys$e
82
83all : $(EXEC)
84
85install: $(EXEC)
86 if NOT EXIST "$(GSDLHOME)\bin\windows" mkdir "$(GSDLHOME)\bin\windows"
87 copy $(EXEC) "$(GSDLHOME)\bin\windows"
88
89clean:
90 del *$o
91 del $(EXEC)
92
93gdbmkeys$e: $(OBJECTS) $(LIBS)
94 $(LINK) $(OBJECTS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.