28 lines
446 B
Makefile
28 lines
446 B
Makefile
SUBDIRS = .
|
|
|
|
lib_LTLIBRARIES = libxsock.la
|
|
|
|
INCLUDES= \
|
|
-I$(top_srcdir)/include
|
|
|
|
#bin_PROGRAMS = libulm.o
|
|
|
|
libxsock_la_SOURCES = \
|
|
xsock.cpp \
|
|
xsock_tcp.cpp \
|
|
xsock_udp.cpp \
|
|
xsock_udp_reliable.cpp
|
|
|
|
libxsock_la_SOURCES += \
|
|
xsock.h \
|
|
xsock_errors.h \
|
|
xsock_global.h \
|
|
xsock_iface.h
|
|
|
|
libxsock_la_CFLAGS = -DTRACE -static
|
|
|
|
libxsock_la_LDFLAGS = \
|
|
-no-undefined \
|
|
-version-info @XSOCK_LIB_CURRENT@:@XSOCK_LIB_REVISION@:@XSOCK_LIB_AGE@
|
|
|
|
|