Last change
on this file since 18132 was 16583, checked in by davidb, 15 years ago |
Undoing change commited in r16582
|
-
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 |
|
---|
22 | VERSION = @VERSION@
|
---|
23 |
|
---|
24 | CC = @CC@
|
---|
25 | AR = ar
|
---|
26 | RANLIB = @RANLIB@
|
---|
27 |
|
---|
28 | LIBICONV = @LIBICONV@
|
---|
29 | LTLIBICONV = @LTLIBICONV@
|
---|
30 |
|
---|
31 |
|
---|
32 | DEFS = @DEFS@ -DUNAC_VERSION=\"$(VERSION)\"
|
---|
33 | INCLUDES =
|
---|
34 | CFLAGS = @CFLAGS@ @COMPAT32BITFLAGS@
|
---|
35 |
|
---|
36 | COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CFLAGS)
|
---|
37 |
|
---|
38 | .SUFFIXES:
|
---|
39 | .SUFFIXES: .c .o
|
---|
40 | .c.o:
|
---|
41 | $(COMPILE) $<
|
---|
42 |
|
---|
43 | HEADERS = unac.h
|
---|
44 |
|
---|
45 | SOURCES = unac.c
|
---|
46 |
|
---|
47 | OBJECTS = unac.o
|
---|
48 |
|
---|
49 |
|
---|
50 | all : libunac.a
|
---|
51 |
|
---|
52 |
|
---|
53 | libunac.a: $(OBJECTS)
|
---|
54 | rm -f libunac.a
|
---|
55 | $(AR) cru libunac.a $(OBJECTS)
|
---|
56 | $(RANLIB) libunac.a
|
---|
57 |
|
---|
58 |
|
---|
59 | install:
|
---|
60 |
|
---|
61 | clean:
|
---|
62 | rm -f *.o libunac.a
|
---|
63 |
|
---|
64 | distclean: clean
|
---|
65 | rm -f Makefile config.h config.log config.status
|
---|
66 |
|
---|
67 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.