source: indexers/trunk/mg/lib/win32.mak@ 19524

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

Dr Bainbridge updated the Windows makefiles to 1. Take the DEBUG flag so that we can recompile all of GS2 in the Vis C++ 2005 Express Edition command prompt and then use its Debugger on the C code. 2. Now GS2 make clean command cleans up all object and lib files that its make generates.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1###########################################################################
2#
3# win32 makefile -- mg\lib
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
27MGHOME = ..
28
29AR = lib
30CC = cl
31
32DEBUG = 0
33
34!IF $(DEBUG)
35CFLAGS = -DEBUG -Z7 /errorReport:prompt
36ARFLAGS = /DEBUG /Z7 /errorReport:prompt
37!ELSE
38CFLAGS =
39ARFLAGS =
40!ENDIF
41
42
43DEFS = -DQUIET -DHAVE_CONFIG_H -D__WIN32__ -D_LITTLE_ENDIAN -DPARADOCNUM \
44 -DSHORT_SUFFIX -D_CRT_SECURE_NO_DEPRECATE
45
46INCLUDES = -I"." -I"$(MGHOME)"
47
48COMPILE = $(CC) $(CFLAGS) -c $(DEFS) $(INCLUDES)
49
50.SUFFIXES: .c .obj
51.c.obj:
52 $(COMPILE) $<
53
54o = .obj
55
56HEADERS = \
57 bitio_m_random.h filestats.h local_strings.h lovinstem.h \
58 bitio_m_stdio.h getopt.h memlib.h \
59 bitio_gen.h bitio_mem.h mgheap.h messages.h \
60 bitio_m.h bitio_mems.h huffman.h timing.h \
61 bitio_m_mem.h bitio_random.h huffman_mem.h perf_hash.h \
62 bitio_m_mems.h bitio_stdio.h huffman_stdio.h sptree.h \
63 rx.h pathmax.h getpagesize.h \
64 random.h win32in.h simplefrenchstem.h unitool.h \
65 longlong.h
66
67SOURCES = \
68 bitio_random.c mgheap.c memlib.c \
69 bitio_stdio.c huffman.c messages.c \
70 bitio_gen.c filestats.c huffman_mem.c perf_hash.c \
71 bitio_mem.c getopt.c huffman_stdio.c sptree.c \
72 bitio_mems.c getopt1.c local_strings.c lovinstem.c \
73 timing.c rx.c \
74 alloca.c error.c xmalloc.c strstr.c \
75 ftruncate.c strcasecmp.c random.c win32in.c \
76 simplefrenchstem.c unitool.h
77
78OBJECTS = rx$o \
79 bitio_random$o mgheap$o memlib$o \
80 bitio_stdio$o huffman$o messages$o \
81 bitio_gen$o filestats$o huffman_mem$o perf_hash$o \
82 bitio_mem$o getopt$o huffman_stdio$o sptree$o \
83 bitio_mems$o getopt1$o local_strings$o lovinstem$o \
84 timing$o \
85 error$o xmalloc$o \
86 random$o win32in$o simplefrenchstem$o \
87 unitool$o
88
89DISTFILES = Makefile.in $(HEADERS) $(SOURCES)
90
91all : libmglib.lib
92
93libmglib.lib : $(OBJECTS)
94 if exist libmglib.lib del libmglib.lib
95 $(AR) /out:libmglib.lib $(ARFLAGS) $(OBJECTS)
96
97install:
98
99clean:
100 if exist *$o del *$o
101 if exist libmglib.lib del libmglib.lib
Note: See TracBrowser for help on using the repository browser.