4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
20 lines
550 B
Makefile
20 lines
550 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 -lpthread
|
|
|
|
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>
|