source: other-projects/gs2-export-cdrom-installer/trunk/win32.mak@ 22919

Last change on this file since 22919 was 22919, checked in by ak19, 14 years ago

Dr Bainbridge got gssetup.exe (for the export to cdrom installer) to work again for a later version of Visual Studio: now it works with Visual Studio 9 and does not use STLPort anymore. Changed .rc reference to including afxres.h to windows.h in vcinstall.rc, and there were changes to dereferencing File elements in an STL iterator (in fileCopier.cpp). Also needed to change references to unsigned double to double since the former seems to no longer be supported in later versions of Vis Studio.

  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1###########################################################################
2#
3# win32 makefile -- gssetup
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) 2006 The New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26CC = cl
27CPPFLAGS = -GX
28DEFS =
29INCLUDES =
30
31COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
32LINK = $(CC) -nologo
33
34WINLIBS = advapi32.lib comctl32.lib comdlg32.lib gdi32.lib \
35 ole32.lib shell32.lib user32.lib uuid.lib
36
37.SUFFIXES:
38.SUFFIXES: .cpp .obj
39.cpp.obj:
40 $(COMPILE) $<
41
42GSSETUP_OBJECTS = \
43 configFile.obj configurable.obj copyProgress.obj dirent.obj dirSelector.obj DiskSpace.obj file.obj fileCopier.obj FilePath.obj gsinstall.obj gsManifest.obj gsPlatform.obj gsProfile.obj gsProgman.obj gsRegistry.obj launchApp.obj registry.obj stringArray.obj unInstall.obj gssetup.res
44
45all: gssetup.exe
46
47gssetup.exe: $(GSSETUP_OBJECTS)
48 if EXIST gssetup.exe del gssetup.exe
49 $(LINK) -o gssetup.exe $(GSSETUP_OBJECTS) $(WINLIBS)
50
51gssetup.res: vcinstall.rc vcinstall.bmp
52 rc /fo "gssetup.res" "vcinstall.rc"
53
54clean:
55 del *.obj
56 del gssetup.exe
57
58install:
Note: See TracBrowser for help on using the repository browser.