Mercurial > hg > index.fcgi > gift-gnutella > gift-gnutella-0.0.11-1pba
comparison src/Makefile.am @ 0:d39e1d0d75b6
initial add
author | paulo@hit-nxdomain.opendns.com |
---|---|
date | Sat, 20 Feb 2010 21:18:28 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ab685481533e |
---|---|
1 # $Id: Makefile.am,v 1.19 2004/03/26 11:44:12 hipnod Exp $ | |
2 ############################################################################### | |
3 | |
4 AM_CFLAGS = \ | |
5 $(LIBXML2_CFLAGS) \ | |
6 $(GNUTELLA_CFLAGS) | |
7 | |
8 INCLUDES = \ | |
9 -I$(top_srcdir) | |
10 | |
11 SUBDIRS = \ | |
12 encoding \ | |
13 io \ | |
14 message \ | |
15 transfer | |
16 | |
17 EXTRA_DIST = \ | |
18 Makefile.msvc | |
19 | |
20 plugindir = $(libdir)/giFT | |
21 | |
22 plugin_LTLIBRARIES = libGnutella.la | |
23 | |
24 libGnutella_la_SOURCES = \ | |
25 dns.c dns.h \ | |
26 file_cache.c file_cache.h \ | |
27 gt_accept.c gt_accept.h \ | |
28 gt_ban.c gt_ban.h \ | |
29 gt_bind.c gt_bind.h \ | |
30 gt_conf.c gt_conf.h \ | |
31 gt_connect.c gt_connect.h \ | |
32 gt_gnutella.c gt_gnutella.h \ | |
33 gt_guid.c gt_guid.h \ | |
34 gt_http_client.c gt_http_client.h \ | |
35 gt_http_server.c gt_http_server.h \ | |
36 gt_netorg.c gt_netorg.h \ | |
37 gt_node_cache.c gt_node_cache.h \ | |
38 gt_node.c gt_node.h \ | |
39 gt_node_list.c gt_node_list.h \ | |
40 gt_packet.c gt_packet.h \ | |
41 gt_query_route.c gt_query_route.h \ | |
42 gt_search.c gt_search.h \ | |
43 gt_search_exec.c gt_search_exec.h \ | |
44 gt_share.c gt_share.h \ | |
45 gt_share_file.c gt_share_file.h \ | |
46 gt_share_state.c gt_share_state.h \ | |
47 gt_stats.c gt_stats.h \ | |
48 gt_urn.c gt_urn.h \ | |
49 gt_utils.c gt_utils.h \ | |
50 gt_version.c gt_version.h \ | |
51 gt_web_cache.c gt_web_cache.h \ | |
52 gt_xfer.c gt_xfer.h \ | |
53 gt_xfer_obj.c gt_xfer_obj.h \ | |
54 http_request.c http_request.h \ | |
55 sha1.c sha1.h \ | |
56 trie.c trie.h \ | |
57 xml.c xml.h | |
58 | |
59 libGnutella_la_LIBADD = \ | |
60 $(top_builddir)/src/encoding/libgt_encoding.la \ | |
61 $(top_builddir)/src/io/libgt_io.la \ | |
62 $(top_builddir)/src/message/libgt_message.la \ | |
63 $(top_builddir)/src/transfer/libgt_transfer.la \ | |
64 $(LIBXML2_LIBS) \ | |
65 $(GNUTELLA_LIBS) | |
66 | |
67 libGnutella_la_LDFLAGS = \ | |
68 $(PLUGIN_LDFLAGS) |