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

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

Changed makefiles so that common-src can be checked out and compiled independently.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
RevLine 
[744]1###########################################################################
2#
[1000]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.
[744]7#
[1000]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#
[744]25###########################################################################
26
[17876]27GSDLHOME = ..\..\..\..
[19882]28COMMON_DIR = ..\..\..
[16574]29
[19523]30DEBUG = 0
[11256]31GSDL_VC4 = 0
[18070]32STLPATH = "$(COMMON_DIR)\packages\windows\stlport\stlport"
[744]33
34AR = lib
35CC = cl
[11256]36
[19523]37!IF $(DEBUG)
38CXXFLAGS = -DEBUG -Z7 /errorReport:prompt
39!ELSE
40CXXFLAGS =
41!ENDIF
42
[11256]43!IF $(GSDL_VC4)
[19523]44CXXFLAGS = $(CXXFLAGS) -GX
[11256]45!ELSE
[19523]46CXXFLAGS = $(CXXFLAGS) -EHsc
[11256]47!ENDIF
48
[1000]49LDFLAGS =
[744]50
[11253]51DEFS = -D__WIN32__ -DHAVE_CONFIG_H -D_CRT_SECURE_NO_DEPRECATE
[18070]52INCLUDES = -I"$(COMMON_DIR)\src\gdbmedit\db2txt" -I"$(COMMON_DIR)\src\lib" -I"$(COMMON_DIR)\indexers\mg\lib" \
[18075]53 -I"$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3" -I"$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3\windows"
[11257]54!IF $(GSDL_VC4)
[2338]55DEFS=$(DEFS) -DGSDL_NAMESPACE_BROKEN -DGSDL_USE_IOS_H -D__STL_NO_NEW_IOSTREAMS
56INCLUDES = $(INCLUDES) -I$(STLPATH)
57!ENDIF
58
[18070]59LIBS = "$(COMMON_DIR)\indexers\mg\lib\unitool.obj" "$(COMMON_DIR)\src\lib\gsdllib.lib" \
[18075]60 "$(COMMON_DIR)\packages\gdbm\gdbm-1.8.3\gdbm.lib"
[2338]61
[19523]62COMPILE = $(CC) -nologo -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
[11253]63LINK = $(CC) -nologo $(LDFLAGS)
[744]64
65.SUFFIXES:
66.SUFFIXES: .cpp .obj
67.cpp.obj:
68 $(COMPILE) $<
69
70ANSI2KNR =
71o = .obj
72e = .exe
[1000]73
[744]74HEADERS =
75
76SOURCES = db2txt.cpp
77
78OBJECTS = db2txt$o
79
80EXEC = db2txt$e
[1000]81
[744]82all : $(EXEC)
83
84install: $(EXEC)
[2338]85 if NOT EXIST "$(GSDLHOME)\bin\windows" mkdir "$(GSDLHOME)\bin\windows"
86 copy $(EXEC) "$(GSDLHOME)\bin\windows"
[744]87
88clean:
[2338]89 del *$o
[744]90 del $(EXEC)
91
[1000]92db2txt$e: $(OBJECTS) $(LIBS)
93 $(LINK) $(OBJECTS) $(LIBS)
Note: See TracBrowser for help on using the repository browser.