source: trunk/gsdl/packages/mg/lib/WIN32.MAK@ 10853

Last change on this file since 10853 was 7060, checked in by sjboddie, 20 years ago

Added DLL=1 and DLLDEBUG=1 options to the windows makefiles

  • 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
27GSDLHOME = ..\..\..
28DLL = 0
29DLLDEBUG = 0
30
31AR = lib
32CC = cl
33
34CPPFLAGS = -GX
35!IF $(DLL)
36CPPFLAGS = $(CPPFLAGS) -MD
37!ELSE
38!IF ($(DLLDEBUG))
39CPPFLAGS = $(CPPFLAGS) -MDd
40!ENDIF
41!ENDIF
42
43DEFS = -DQUIET -DHAVE_CONFIG_H -D__WIN32__ -D_LITTLE_ENDIAN -DPARADOCNUM \
44 -DSHORT_SUFFIX
45INCLUDES = -I"$(GSDLHOME)\packages\mg\lib" -I"$(GSDLHOME)\packages\mg" \
46 -I"$(GSDLHOME)"
47
48COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
49
50.SUFFIXES:
51.SUFFIXES: .c .obj
52.c.obj:
53 $(COMPILE) $<
54
55ANSI2KNR =
56o = .obj
57
58HEADERS = \
59 bitio_m_random.h filestats.h local_strings.h lovinstem.h \
60 bitio_m_stdio.h getopt.h memlib.h \
61 bitio_gen.h bitio_mem.h mgheap.h messages.h \
62 bitio_m.h bitio_mems.h huffman.h timing.h \
63 bitio_m_mem.h bitio_random.h huffman_mem.h perf_hash.h \
64 bitio_m_mems.h bitio_stdio.h huffman_stdio.h sptree.h \
65 rx.h pathmax.h getpagesize.h \
66 random.h win32in.h simplefrenchstem.h unitool.h \
67 longlong.h
68
69SOURCES = \
70 bitio_random.c mgheap.c memlib.c \
71 bitio_stdio.c huffman.c messages.c \
72 bitio_gen.c filestats.c huffman_mem.c perf_hash.c \
73 bitio_mem.c getopt.c huffman_stdio.c sptree.c \
74 bitio_mems.c getopt1.c local_strings.c lovinstem.c \
75 timing.c rx.c \
76 alloca.c error.c xmalloc.c strstr.c \
77 ftruncate.c strcasecmp.c random.c win32in.c \
78 simplefrenchstem.c unitool.h
79
80OBJECTS = rx$o \
81 bitio_random$o mgheap$o memlib$o \
82 bitio_stdio$o huffman$o messages$o \
83 bitio_gen$o filestats$o huffman_mem$o perf_hash$o \
84 bitio_mem$o getopt$o huffman_stdio$o sptree$o \
85 bitio_mems$o getopt1$o local_strings$o lovinstem$o \
86 timing$o \
87 error$o xmalloc$o \
88 random$o win32in$o simplefrenchstem$o \
89 unitool$o
90
91DISTFILES = Makefile.in $(HEADERS) $(SOURCES)
92
93all : libmg.lib
94
95libmg.lib : $(OBJECTS)
96 if EXIST libmg.lib del libmg.lib
97 $(AR) /out:libmg.lib $(OBJECTS)
98
99$(OBJECTS): "$(GSDLHOME)\win32cfg.h"
100
101install:
102clean:
103 del *$o
104 del libmg.lib
Note: See TracBrowser for help on using the repository browser.