about summary refs log tree commit diff
path: root/libevent/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'libevent/Makefile.am')
-rw-r--r--libevent/Makefile.am32
1 files changed, 0 insertions, 32 deletions
diff --git a/libevent/Makefile.am b/libevent/Makefile.am
deleted file mode 100644
index d67bc8c..0000000
--- a/libevent/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-AUTOMAKE_OPTIONS = foreign no-dependencies
-
-
-EXTRA_DIST = acconfig.h event.h event-internal.h log.h evsignal.h \
-	kqueue.c epoll_sub.c epoll.c select.c rtsig.c poll.c signal.c \
-	evport.c devpoll.c buffer.c \
-	compat/sys/queue.h compat/sys/tree.h compat/sys/_time.h \
-	WIN32-Code/config.h WIN32-Code/misc.c \
-	WIN32-Code/win32.c WIN32-Code/misc.h
-
-noinst_LIBRARIES = libevent.a
-
-if BUILD_WIN32
-
-SYS_LIBS = -lws2_32
-SYS_SRC = WIN32-Code/misc.c WIN32-Code/win32.c
-SYS_INCLUDES = -I$(top_srcdir)/WIN32-Code
-
-else
-
-SYS_LIBS =
-SYS_SRC =
-SYS_INCLUDES =
-
-endif
-
-libevent_a_SOURCES = event.c buffer.c event.h log.c evdns.c evdns.h $(SYS_SRC)
-libevent_a_LIBADD = @LIBOBJS@ $(SYS_LIBS)
-
-INCLUDES = -I$(top_srcdir)/compat $(SYS_INCLUDES)
-
-DISTCLEANFILES = *~