Home | History | Annotate | Line # | Download | only in lib
Makefile revision 1.8
      1  1.8  christos # $NetBSD: Makefile,v 1.8 2024/04/05 11:04:37 christos Exp $
      2  1.2  christos 
      3  1.8  christos LIBISPRIVATE=yes
      4  1.3  christos 
      5  1.1  christos .include <bsd.own.mk>
      6  1.1  christos 
      7  1.1  christos MKLINT=	no
      8  1.1  christos LIB=	uv
      9  1.1  christos 
     10  1.2  christos .if ${LIBISPRIVATE:Uno} == "no"
     11  1.1  christos INCS=	uv.h uv/unix.h uv/bsd.h uv/errno.h uv/version.h uv/threadpool.h
     12  1.1  christos INCSDIR=/usr/include
     13  1.1  christos MAN=	libuv.3
     14  1.2  christos .endif
     15  1.1  christos 
     16  1.1  christos LIBUVDIR=${.CURDIR}/../dist
     17  1.1  christos 
     18  1.1  christos .PATH: ${LIBUVDIR}/src ${LIBUVDIR}/src/unix ${LIBUVDIR}/include
     19  1.1  christos SRCS+= \
     20  1.1  christos async.c \
     21  1.1  christos atomic-ops.h \
     22  1.1  christos core.c \
     23  1.1  christos dl.c \
     24  1.1  christos fs.c \
     25  1.1  christos getaddrinfo.c \
     26  1.1  christos getnameinfo.c \
     27  1.1  christos internal.h \
     28  1.1  christos loop-watcher.c \
     29  1.1  christos loop.c \
     30  1.1  christos pipe.c \
     31  1.1  christos poll.c \
     32  1.1  christos process.c \
     33  1.1  christos random-devurandom.c \
     34  1.1  christos signal.c \
     35  1.1  christos stream.c \
     36  1.6  christos strtok.c \
     37  1.1  christos tcp.c \
     38  1.1  christos thread.c \
     39  1.1  christos tty.c \
     40  1.1  christos udp.c
     41  1.1  christos 
     42  1.1  christos SRCS+= \
     43  1.1  christos bsd-ifaddrs.c \
     44  1.1  christos bsd-proctitle.c \
     45  1.1  christos kqueue.c \
     46  1.1  christos netbsd.c \
     47  1.1  christos posix-hrtime.c
     48  1.1  christos 
     49  1.1  christos SRCS+= \
     50  1.1  christos fs-poll.c \
     51  1.1  christos idna.c \
     52  1.1  christos inet.c \
     53  1.1  christos random.c \
     54  1.1  christos strscpy.c \
     55  1.1  christos threadpool.c \
     56  1.1  christos timer.c \
     57  1.1  christos uv-data-getter-setters.c \
     58  1.1  christos uv-common.c \
     59  1.1  christos version.c
     60  1.1  christos 
     61  1.1  christos CPPFLAGS+=	-I${LIBUVDIR}/include -I${LIBUVDIR}/src
     62  1.1  christos 
     63  1.1  christos LIBDPLIBS+=	kvm ${NETBSDSRCDIR}/lib/libkvm
     64  1.1  christos 
     65  1.5       mrg .if ${LIBISPRIVATE} != "yes" && ${LIBISPRIVATE} != "pic"
     66  1.1  christos SHLIB_MAJOR=	1
     67  1.1  christos SHLIB_MINOR=	0
     68  1.1  christos 
     69  1.1  christos PKGCONFIG=libuv
     70  1.1  christos .include "${.CURDIR}/../pkgconfig.mk"
     71  1.3  christos .endif
     72  1.1  christos 
     73  1.1  christos .include <bsd.lib.mk>
     74