26 lines
373 B
Makefile
26 lines
373 B
Makefile
SUBDIRS = .
|
|
|
|
lib_LTLIBRARIES = libXSock.la
|
|
|
|
#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 = \
|
|
-version-info 0:1:0 -no-undefined
|
|
|
|
INCLUDES= \
|
|
-I../
|
|
|