source: trunk/gsinstaller/win32.mak@ 11682

Last change on this file since 11682 was 11675, checked in by mdewsnip, 18 years ago

Added some stuff to compile the resource file.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 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 = -DGSDL_NAMESPACE_BROKEN -D__STL_NO_NEW_IOSTREAMS
29INCLUDES = -I"C:\mdewsnip\gsdl-cvs.new\packages\windows\stlport\stlport"
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: gsinstall.rc vcinstall.bmp
52 rc /fo "gssetup.res" "gsinstall.rc"
53
54clean:
55 del *.obj
56 del gssetup.exe
57
58install:
Note: See TracBrowser for help on using the repository browser.