A clone of btpd with my configuration changes.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

33 lignes
748 B

  1. AUTOMAKE_OPTIONS = foreign no-dependencies
  2. EXTRA_DIST = acconfig.h event.h event-internal.h log.h evsignal.h \
  3. kqueue.c epoll_sub.c epoll.c select.c rtsig.c poll.c signal.c \
  4. evport.c devpoll.c buffer.c \
  5. compat/sys/queue.h compat/sys/tree.h compat/sys/_time.h \
  6. WIN32-Code/config.h WIN32-Code/misc.c \
  7. WIN32-Code/win32.c WIN32-Code/misc.h
  8. noinst_LIBRARIES = libevent.a
  9. if BUILD_WIN32
  10. SYS_LIBS = -lws2_32
  11. SYS_SRC = WIN32-Code/misc.c WIN32-Code/win32.c
  12. SYS_INCLUDES = -I$(top_srcdir)/WIN32-Code
  13. else
  14. SYS_LIBS =
  15. SYS_SRC =
  16. SYS_INCLUDES =
  17. endif
  18. libevent_a_SOURCES = event.c buffer.c event.h log.c evdns.c evdns.h $(SYS_SRC)
  19. libevent_a_LIBADD = @LIBOBJS@ $(SYS_LIBS)
  20. INCLUDES = -I$(top_srcdir)/compat $(SYS_INCLUDES)
  21. DISTCLEANFILES = *~