source: gsdl/trunk/common-src/src/gdbmedit/db2txt/win32.mak@ 17876

Last change on this file since 17876 was 17876, checked in by ak19, 15 years ago

Minor corrections to the makefile so it can be run from the current directory (GSDLHOME and INCLUDES flags)

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 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
30GSDL_VC4 = 0
31STLPATH = "$(COMMONHOME)\packages\windows\stlport\stlport"
32
33AR = lib
34CC = cl
35
36!IF $(GSDL_VC4)
37CPPFLAGS = -GX
38!ELSE
39CPPFLAGS = -EHsc
40!ENDIF
41
42LDFLAGS =
43
44DEFS = -D__WIN32__ -DHAVE_CONFIG_H -D_CRT_SECURE_NO_DEPRECATE
45INCLUDES = -I"$(COMMONHOME)\src\gdbmedit\db2txt" -I"$(COMMONHOME)\src\lib" -I"$(COMMONHOME)\indexers\mg\lib" \
46 -I"$(COMMONHOME)\packages\windows\gdbm\gdbm"
47!IF $(GSDL_VC4)
48DEFS=$(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
49INCLUDES = $(INCLUDES) -I$(STLPATH)
50!ENDIF
51
52LIBS = "$(COMMONHOME)\indexers\mg\lib\unitool.obj" "$(COMMONHOME)\src\lib\gsdllib.lib" \
53 "$(COMMONHOME)\packages\windows\gdbm\gdbm\gdbm.lib"
54
55COMPILE = $(CC) -nologo -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
56LINK = $(CC) -nologo $(LDFLAGS)
57
58.SUFFIXES:
59.SUFFIXES: .cpp .obj
60.cpp.obj:
61 $(COMPILE) $<
62
63ANSI2KNR =
64o = .obj
65e = .exe
66
67HEADERS =
68
69SOURCES = db2txt.cpp
70
71OBJECTS = db2txt$o
72
73EXEC = db2txt$e
74
75all : $(EXEC)
76
77install: $(EXEC)
78 if NOT EXIST "$(GSDLHOME)\bin\windows" mkdir "$(GSDLHOME)\bin\windows"
79 copy $(EXEC) "$(GSDLHOME)\bin\windows"
80
81clean:
82 del *$o
83 del $(EXEC)
84
85db2txt$e: $(OBJECTS) $(LIBS)
86 $(LINK) $(OBJECTS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.