This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
38 lines
557 B
Makefile
38 lines
557 B
Makefile
# $NetBSD: Makefile,v 1.2 2013/11/09 00:26:06 christos Exp $
|
|
|
|
USE_SHLIBDIR=yes
|
|
.include <bsd.own.mk>
|
|
|
|
LIB=event
|
|
|
|
#__MINIX: Unsupported: kqueue.c
|
|
SRCS= \
|
|
buffer.c \
|
|
bufferevent.c \
|
|
bufferevent_filter.c \
|
|
bufferevent_pair.c \
|
|
bufferevent_ratelim.c \
|
|
bufferevent_sock.c \
|
|
evdns.c \
|
|
event.c \
|
|
event_tagging.c \
|
|
evmap.c \
|
|
evrpc.c \
|
|
evthread.c \
|
|
evutil.c \
|
|
evutil_rand.c \
|
|
http.c \
|
|
listener.c \
|
|
log.c \
|
|
poll.c \
|
|
select.c \
|
|
signal.c
|
|
|
|
.if defined(HAVE_GCC) && ${HAVE_GCC} == 48
|
|
.if ${MACHINE_ARCH} == "sh3el"
|
|
COPTS.evdns.c= -O0
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|