- replace libevent dependency with internal event loop to make the pbulk core standalone - open success and error log with O_APPEND, which allows e.g. cleaning up the error build during build without breaking it if done with care.
13 lines
260 B
Makefile
13 lines
260 B
Makefile
# $NetBSD: Makefile.inc,v 1.4 2009/01/31 23:25:38 joerg Exp $
|
|
|
|
BINDIR?= ${PREFIX}/bin
|
|
|
|
WARNS= 4
|
|
|
|
.if !defined(LIBPBULK_ONLY)
|
|
CPPFLAGS+= -I${.CURDIR}/../lib
|
|
DPADD+= ${.OBJDIR}/../lib/libpbulk.a
|
|
LDADD+= -L${.OBJDIR}/../lib -lpbulk
|
|
.endif
|
|
|
|
LDADD+= -lnbcompat
|