source: gsdl/trunk/common-src/src/gdbmedit/gdbmget/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: 2.0 KB
Line 
1###########################################################################
2#
3# win32 makefile -- db2txt
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 = ..\..\..\..\..
28COMMONHOME = $(GSDLHOME)\common-src
29
30USE_STLPORT = 0
31STLPATH = "$(COMMONHOME)packages\windows\stlport\stlport"
32
33AR = lib
34CC = cl
35CPPFLAGS =
36LDFLAGS =
37
38DEFS = -D__WIN32__ -DHAVE_CONFIG_H
39INCLUDES = -I"$(COMMONHOME)\packages\windows\gdbm\gdbm"
40!IF $(USE_STLPORT)
41DEFS=$(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
42INCLUDES = $(INCLUDES) -I$(STLPATH)
43!ENDIF
44
45LIBS = "$(COMMONHOME)\packages\windows\gdbm\gdbm\gdbm.lib"
46
47COMPILE = $(CC) -c -GX $(DEFS) $(INCLUDES)
48LINK = $(CC) $(LDFLAGS)
49
50.SUFFIXES:
51.SUFFIXES: .cpp .obj
52.cpp.obj:
53 $(COMPILE) $<
54
55ANSI2KNR =
56o = .obj
57e = .exe
58
59HEADERS =
60
61SOURCES = gdbmget.cpp
62
63OBJECTS = gdbmget$o
64
65EXEC = gdbmget$e
66
67all : $(EXEC)
68
69install: $(EXEC)
70 if NOT EXIST "$(GSDLHOME)\bin\windows" mkdir "$(GSDLHOME)\bin\windows"
71 copy $(EXEC) "$(GSDLHOME)\bin\windows"
72
73clean:
74 del *$o
75 del $(EXEC)
76
77gdbmget$e: $(OBJECTS) $(LIBS)
78 $(LINK) $(OBJECTS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.