source: gs2build/win32.mak@ 18176

Last change on this file since 18176 was 18176, checked in by ak19, 15 years ago

MAKECLEANCMD target needs to be passed GSDLHOME variable

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