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.

33 lines
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 = *~