29 lines
397 B
Text
29 lines
397 B
Text
|
SUBDIRS = .
|
||
|
|
||
|
lib_LTLIBRARIES = libXSock.la
|
||
|
|
||
|
#bin_PROGRAMS = libulm.o
|
||
|
|
||
|
libXSock_la_SOURCES = \
|
||
|
XSock.cpp \
|
||
|
XSockTCP.cpp \
|
||
|
XSockUDP.cpp \
|
||
|
XSockUDP_RELIABLE.cpp
|
||
|
|
||
|
libXSock_la_SOURCES += \
|
||
|
xsock.h \
|
||
|
introspect.h \
|
||
|
command.h \
|
||
|
macrocommand.h \
|
||
|
singleton.h \
|
||
|
identifiable.h
|
||
|
|
||
|
libXSock_la_CFLAGS = -DTRACE -static
|
||
|
|
||
|
libXSock_la_LDFLAGS = \
|
||
|
-version-info 0:1:0 -no-undefined
|
||
|
|
||
|
INCLUDES= \
|
||
|
-I../
|
||
|
|