Mercurial > hg > index.fcgi > gift-gnutella > gift-gnutella-0.0.11-1pba
diff src/Makefile.am @ 0:d39e1d0d75b6
initial add
author | paulo@hit-nxdomain.opendns.com |
---|---|
date | Sat, 20 Feb 2010 21:18:28 -0800 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/Makefile.am Sat Feb 20 21:18:28 2010 -0800 1.3 @@ -0,0 +1,68 @@ 1.4 +# $Id: Makefile.am,v 1.19 2004/03/26 11:44:12 hipnod Exp $ 1.5 +############################################################################### 1.6 + 1.7 +AM_CFLAGS = \ 1.8 + $(LIBXML2_CFLAGS) \ 1.9 + $(GNUTELLA_CFLAGS) 1.10 + 1.11 +INCLUDES = \ 1.12 + -I$(top_srcdir) 1.13 + 1.14 +SUBDIRS = \ 1.15 + encoding \ 1.16 + io \ 1.17 + message \ 1.18 + transfer 1.19 + 1.20 +EXTRA_DIST = \ 1.21 + Makefile.msvc 1.22 + 1.23 +plugindir = $(libdir)/giFT 1.24 + 1.25 +plugin_LTLIBRARIES = libGnutella.la 1.26 + 1.27 +libGnutella_la_SOURCES = \ 1.28 + dns.c dns.h \ 1.29 + file_cache.c file_cache.h \ 1.30 + gt_accept.c gt_accept.h \ 1.31 + gt_ban.c gt_ban.h \ 1.32 + gt_bind.c gt_bind.h \ 1.33 + gt_conf.c gt_conf.h \ 1.34 + gt_connect.c gt_connect.h \ 1.35 + gt_gnutella.c gt_gnutella.h \ 1.36 + gt_guid.c gt_guid.h \ 1.37 + gt_http_client.c gt_http_client.h \ 1.38 + gt_http_server.c gt_http_server.h \ 1.39 + gt_netorg.c gt_netorg.h \ 1.40 + gt_node_cache.c gt_node_cache.h \ 1.41 + gt_node.c gt_node.h \ 1.42 + gt_node_list.c gt_node_list.h \ 1.43 + gt_packet.c gt_packet.h \ 1.44 + gt_query_route.c gt_query_route.h \ 1.45 + gt_search.c gt_search.h \ 1.46 + gt_search_exec.c gt_search_exec.h \ 1.47 + gt_share.c gt_share.h \ 1.48 + gt_share_file.c gt_share_file.h \ 1.49 + gt_share_state.c gt_share_state.h \ 1.50 + gt_stats.c gt_stats.h \ 1.51 + gt_urn.c gt_urn.h \ 1.52 + gt_utils.c gt_utils.h \ 1.53 + gt_version.c gt_version.h \ 1.54 + gt_web_cache.c gt_web_cache.h \ 1.55 + gt_xfer.c gt_xfer.h \ 1.56 + gt_xfer_obj.c gt_xfer_obj.h \ 1.57 + http_request.c http_request.h \ 1.58 + sha1.c sha1.h \ 1.59 + trie.c trie.h \ 1.60 + xml.c xml.h 1.61 + 1.62 +libGnutella_la_LIBADD = \ 1.63 + $(top_builddir)/src/encoding/libgt_encoding.la \ 1.64 + $(top_builddir)/src/io/libgt_io.la \ 1.65 + $(top_builddir)/src/message/libgt_message.la \ 1.66 + $(top_builddir)/src/transfer/libgt_transfer.la \ 1.67 + $(LIBXML2_LIBS) \ 1.68 + $(GNUTELLA_LIBS) 1.69 + 1.70 +libGnutella_la_LDFLAGS = \ 1.71 + $(PLUGIN_LDFLAGS)