216b5a285f
PR: 192062 Exp-run by: antoine Approved by: portmgr (antoine)
20 lines
549 B
Makefile
20 lines
549 B
Makefile
LIB= udt
|
|
SHLIB_MAJOR=4
|
|
SHLIB_MINOR=10
|
|
NO_PROFILE= yes # Ports don't install profile-libraries
|
|
LIBDIR= ${PREFIX}/lib
|
|
INCLUDEDIR= ${PREFIX}/include
|
|
INCS= udt.h
|
|
|
|
LDADD= -lmd -pthread
|
|
|
|
SRCS= common.cpp window.cpp list.cpp buffer.cpp packet.cpp channel.cpp \
|
|
queue.cpp ccc.cpp cache.cpp core.cpp epoll.cpp api.cpp
|
|
|
|
CXXFLAGS+= -D${MACHINE_ARCH:tu:S/I386/IA32/:S/SPARC64/SPARC/} -DBSD
|
|
CXXFLAGS+= -Wno-system-headers -Wall -W \
|
|
-Wpointer-arith -Wreturn-type \
|
|
-Wwrite-strings -Wswitch -Wno-cast-align \
|
|
-Wunused-parameter -Werror
|
|
|
|
.include <bsd.lib.mk>
|