source: gsdl/trunk/build-src/src/hashfile/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:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
RevLine 
[744]1###########################################################################
2#
[1000]3# win32 makefile -- hashfile
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.
[744]7#
[1000]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#
[744]25###########################################################################
[1000]26
[16574]27GSDLHOME = ..\..\..
[11256]28GSDL_VC4 = 0
[19520]29DEBUG = 0
[744]30
31AR = lib
32CC = cl
[11256]33
[19520]34!IF $(DEBUG)
35CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
36!ELSE
37CXXFLAGS =
38!ENDIF
39
[11256]40!IF $(GSDL_VC4)
[19520]41CXXFLAGS = $(CXXFLAGS) -GX
[11256]42!ELSE
[19520]43CXXFLAGS = $(CXXFLAGS) -EHsc
[11256]44!ENDIF
45
[11253]46DEFS = -DHAVE_CONFIG_H -D__WIN32__ -D_CRT_SECURE_NO_DEPRECATE
[2338]47INCLUDES = -I"$(GSDLHOME)\src\hashfile"
48LIBS =
[744]49
[19520]50COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
[11253]51LINK = $(CC) -nologo $(LDFLAGS)
[744]52
53.SUFFIXES:
54.SUFFIXES: .cpp .obj
55.cpp.obj:
56 $(COMPILE) $<
57
58ANSI2KNR =
59o = .obj
60e = .exe
61
62HEADERS =
63
64SOURCES = hashfile.cpp
65
66OBJECTS = hashfile$o
67
68EXEC = hashfile$e
69
70all : $(EXEC)
71
72install: $(EXEC)
[2338]73 if NOT EXIST "$(GSDLHOME)\bin\windows" mkdir "$(GSDLHOME)\bin\windows"
74 copy $(EXEC) "$(GSDLHOME)\bin\windows"
[744]75
76clean:
[2338]77 del *$o
[744]78 del $(EXEC)
79
80HASHFILE_OBJS = hashfile$o
81
82hashfile$e: $(HASHFILE_OBJS) $(LIBS)
83 $(LINK) $(HASHFILE_OBJS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.