A clone of btpd with my configuration changes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
525 B

  1. bin_PROGRAMS=btpd
  2. btpd_SOURCES=\
  3. btpd.c btpd.h\
  4. cli_if.c content.c content.h\
  5. download.c download_subr.c download.h\
  6. http.c http.h\
  7. main.c\
  8. net.c net.h net_types.h\
  9. net_buf.c net_buf.h\
  10. opts.c opts.h\
  11. peer.c peer.h\
  12. queue.h\
  13. torrent.c torrent.h\
  14. tracker_req.c tracker_req.h\
  15. upload.c upload.h\
  16. util.c
  17. btpd_LDADD=../misc/libmisc.a -levent -lcrypto -lm
  18. btpd_CPPFLAGS=-I$(top_srcdir)/misc @event_CPPFLAGS@ @openssl_CPPFLAGS@
  19. btpd_CFLAGS=@CURL_CFLAGS@
  20. btpd_LDFLAGS=@event_LDFLAGS@ @openssl_LDFLAGS@ @CURL_LDFLAGS@