source: gsdl/trunk/build-src/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

File size: 1.8 KB
Line 
1###########################################################################
2#
3# win32 makefile -- gsdl
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 = $(GSDLHOME)
28BUILDHOME = $(MAKEDIR)
29
30GSDL_VC4 = 0
31DEBUG = 0
32DLL = 0
33DLLDEBUG = 0
34
35MDEFINES = /f win32.mak
36
37INSTALLDIRS = src\hashfile src\phind\generate
38
39
40MAKECMD = $(MAKE) $(MDEFINES) GSDLHOME="$(GSDLHOME)"
41
42!IF $(GSDL_VC4)
43MAKECMD = $(MAKECMD) GSDL_VC4=1
44!ENDIF
45!IF $(DEBUG)
46MAKECMD = $(MAKECMD) DEBUG=1
47!ENDIF
48!IF $(DLL)
49MAKECMD = $(MAKECMD) DLL=1
50!ENDIF
51!IF $(DLLDEBUG)
52MAKECMD = $(MAKECMD) DLLDEBUG=1
53!ENDIF
54
55MAKECLEANCMD = $(MAKE) $(MDEFINES) GSDLHOME="$(GSDLHOME)" clean
56
57all: win32.mak $(INSTALLDIRS)
58
59install: win32.mak $(INSTALLDIRS)
60
61clean:
62 cd "$(BUILDHOME)"
63 cd src\phind\generate
64 $(MAKECLEANCMD)
65 cd "$(BUILDHOME)"
66 cd src\hashfile
67 $(MAKECLEANCMD)
68 cd "$(GSDLHOME)"
69
70$(INSTALLDIRS): FORCE
71 cd "$(BUILDHOME)"
72 cd "$@"
73 $(MAKECMD)
74 $(MAKECMD) install
75 cd "$(GSDLHOME)"
76
77FORCE:
78
Note: See TracBrowser for help on using the repository browser.