source: main/trunk/greenstone2/build-src/win32.mak@ 20999

Last change on this file since 20999 was 20878, checked in by kjdon, 14 years ago

need full paths for tests and copies

File size: 2.4 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
38JAVADIR = src\java\org\nzdl\gsdl
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) $(JAVADIR)
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 "$(BUILDHOME)"
69 cd src\java\org\nzdl\gsdl
70 call winMake.bat clean
71 cd "$(GSDLHOME)"
72
73$(INSTALLDIRS): FORCE
74 cd "$(BUILDHOME)"
75 cd "$@"
76 $(MAKECMD)
77 $(MAKECMD) install
78 cd "$(GSDLHOME)"
79
80$(JAVADIR): FORCE
81 cd "$(BUILDHOME)"
82 cd "$@"
83 call winMake.bat all
84 if NOT EXIST "$(GSDLHOME)\bin\java" mkdir "$(GSDLHOME)\bin\java"
85 if EXIST "$(BUILDHOME)\$(JAVADIR)\ApplyXSLT.jar" copy "$(BUILDHOME)\$(JAVADIR)\ApplyXSLT.jar" "$(GSDLHOME)\bin\java"
86 if NOT EXIST "$(BUILDHOME)\$(JAVADIR)\ApplyXSLT.jar" echo Warning: Failed to find $(BUILDHOME)\$(JAVADIR)\ApplyXSLT.jar. Greenstone will not be able to use XSLT files during building
87
88
89
90FORCE:
91
Note: See TracBrowser for help on using the repository browser.