source: branches/ant-install-branch/indexers/mg/win32.mak@ 10798

Last change on this file since 10798 was 7442, checked in by kjdon, 20 years ago

new makefile for mg on windows

  • 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
27AR = lib
28CC = cl
29CPPFLAGS =
30
31MGHOME = $(MAKEDIR)
32DLL = 0
33DLLDEBUG = 0
34
35MDEFINES = /f win32.mak
36COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
37
38SOURCES =
39
40OBJECTS =
41
42OTHERDIRS = lib
43
44INSTALLDIRS = src\text jni
45
46MAKECMD = $(MAKE) $(MDEFINES)
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.