source: indexers/trunk/packages/unac/Makefile.in@ 15562

Last change on this file since 15562 was 15562, checked in by davidb, 16 years ago

Addition of COMPAT32BITFLAGS to help compilation on a 64-bit machine

  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1#
2# Copyright (C) 2000, 2001, 2002 Loic Dachary <[email protected]>
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17#
18
19# This Makefile produced by Katherine Don for the Greenstone Digial Library
20# software
21
22VERSION = @VERSION@
23
24CC = @CC@
25AR = ar
26RANLIB = @RANLIB@
27
28LIBICONV = @LIBICONV@
29LTLIBICONV = @LTLIBICONV@
30
31
32DEFS = @DEFS@ -DUNAC_VERSION=\"$(VERSION)\"
33INCLUDES =
34CFLAGS = @CFLAGS@ @COMPAT32BITFLAGS@
35
36COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CFLAGS)
37
38.SUFFIXES:
39.SUFFIXES: .c .o
40.c.o:
41 $(COMPILE) $<
42
43HEADERS = unac.h
44
45SOURCES = unac.c
46
47OBJECTS = unac.o
48
49
50all : libunac.a
51
52
53libunac.a: $(OBJECTS)
54 rm -f libunac.a
55 $(AR) cru libunac.a $(OBJECTS)
56 $(RANLIB) libunac.a
57
58
59install:
60
61clean:
62 rm -f *.o libunac.a
63
64distclean: clean
65 rm -f Makefile config.h config.log config.status
66
67
Note: See TracBrowser for help on using the repository browser.