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

Last change on this file since 16574 was 16574, checked in by davidb, 16 years ago

Adjustments to Windows makes file for new common-src, build-src and runtime-src file structure

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1###########################################################################
2#
3# win32 makefile -- hashfile
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 = ..\..\..
28GSDL_VC4 = 0
29
30AR = lib
31CC = cl
32
33!IF $(GSDL_VC4)
34CPPFLAGS = -GX
35!ELSE
36CPPFLAGS = -EHsc
37!ENDIF
38
39DEFS = -DHAVE_CONFIG_H -D__WIN32__ -D_CRT_SECURE_NO_DEPRECATE
40INCLUDES = -I"$(GSDLHOME)\src\hashfile"
41LIBS =
42
43COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
44LINK = $(CC) -nologo $(LDFLAGS)
45
46.SUFFIXES:
47.SUFFIXES: .cpp .obj
48.cpp.obj:
49 $(COMPILE) $<
50
51ANSI2KNR =
52o = .obj
53e = .exe
54
55HEADERS =
56
57SOURCES = hashfile.cpp
58
59OBJECTS = hashfile$o
60
61EXEC = hashfile$e
62
63all : $(EXEC)
64
65install: $(EXEC)
66 if NOT EXIST "$(GSDLHOME)\bin\windows" mkdir "$(GSDLHOME)\bin\windows"
67 copy $(EXEC) "$(GSDLHOME)\bin\windows"
68
69clean:
70 del *$o
71 del $(EXEC)
72
73HASHFILE_OBJS = hashfile$o
74
75hashfile$e: $(HASHFILE_OBJS) $(LIBS)
76 $(LINK) $(HASHFILE_OBJS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.