source: trunk/gsdl/src/txt2db/win32.mak@ 13773

Last change on this file since 13773 was 13773, checked in by kjdon, 17 years ago

mg, mgpp, unac. lucenewrap moved from gsdl into separate indexers repository so they can be easily shared with gs3.

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