source: gsdl/trunk/build-src/win32.mak@ 20880

Last change on this file since 20880 was 20878, checked in by kjdon, 15 years ago

need full paths for tests and copies

File size: 2.4 KB
RevLine 
[16575]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
[19520]31DEBUG = 0
[16575]32DLL = 0
33DLLDEBUG = 0
34
35MDEFINES = /f win32.mak
36
[20873]37INSTALLDIRS = src\hashfile src\phind\generate
38JAVADIR = src\java\org\nzdl\gsdl
[16575]39
40MAKECMD = $(MAKE) $(MDEFINES) GSDLHOME="$(GSDLHOME)"
41
42!IF $(GSDL_VC4)
43MAKECMD = $(MAKECMD) GSDL_VC4=1
44!ENDIF
[19520]45!IF $(DEBUG)
46MAKECMD = $(MAKECMD) DEBUG=1
47!ENDIF
[16575]48!IF $(DLL)
49MAKECMD = $(MAKECMD) DLL=1
50!ENDIF
51!IF $(DLLDEBUG)
52MAKECMD = $(MAKECMD) DLLDEBUG=1
53!ENDIF
54
[18176]55MAKECLEANCMD = $(MAKE) $(MDEFINES) GSDLHOME="$(GSDLHOME)" clean
[16575]56
[20873]57all: win32.mak $(INSTALLDIRS) $(JAVADIR)
[16575]58
59install: win32.mak $(INSTALLDIRS)
60
61clean:
[16577]62 cd "$(BUILDHOME)"
[16575]63 cd src\phind\generate
64 $(MAKECLEANCMD)
[16577]65 cd "$(BUILDHOME)"
[16575]66 cd src\hashfile
67 $(MAKECLEANCMD)
[20873]68 cd "$(BUILDHOME)"
69 cd src\java\org\nzdl\gsdl
70 call winMake.bat clean
[16575]71 cd "$(GSDLHOME)"
72
73$(INSTALLDIRS): FORCE
[16577]74 cd "$(BUILDHOME)"
[16575]75 cd "$@"
76 $(MAKECMD)
77 $(MAKECMD) install
78 cd "$(GSDLHOME)"
79
[20873]80$(JAVADIR): FORCE
81 cd "$(BUILDHOME)"
82 cd "$@"
83 call winMake.bat all
84 if NOT EXIST "$(GSDLHOME)\bin\java" mkdir "$(GSDLHOME)\bin\java"
[20878]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
[20873]87
88
89
[16575]90FORCE:
91
Note: See TracBrowser for help on using the repository browser.