source: indexers/trunk/mg/win32.mak@ 19524

Last change on this file since 19524 was 19524, 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 up all object and lib files that its make generates.

  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1###########################################################################
2#
3# win32 makefile -- mg
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
27
28
29AR = lib
30CC = cl
31
32MGHOME = $(MAKEDIR)
33DEBUG = 0
34DLL = 0
35DLLDEBUG = 0
36
37MDEFINES = /f win32.mak
38
39OTHERDIRS = lib
40
41INSTALLDIRS = src\text jni
42
43MAKECMD = $(MAKE) $(MDEFINES)
44!IF $(DEBUG)
45MAKECMD = $(MAKECMD) DEBUG=1
46!ENDIF
47!IF $(DLL)
48MAKECMD = $(MAKECMD) DLL=1
49!ENDIF
50!IF $(DLLDEBUG)
51MAKECMD = $(MAKECMD) DLLDEBUG=1
52!ENDIF
53
54all: win32.mak $(OTHERDIRS) $(INSTALLDIRS)
55
56java: FORCE
57 cd "java\org\greenstone\mg"
58 call winMake.bat
59 call winMake.bat install
60 cd "$(MGHOME)"
61
62
63install: win32.mak $(INSTALLDIRS)
64
65$(OTHERDIRS): FORCE
66 cd "$@"
67 $(MAKECMD)
68 cd "$(MGHOME)"
69
70$(INSTALLDIRS): FORCE
71 cd "$@"
72 $(MAKECMD)
73 $(MAKECMD) install
74 cd "$(MGHOME)"
75
76FORCE:
Note: See TracBrowser for help on using the repository browser.