27 lines
428 B
Makefile
27 lines
428 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 = \
|
|
-no-undefined \
|
|
-version-info @XSOCK_LIB_CURRENT@:@XSOCK_LIB_REVISION@:@XSOCK_LIB_AGE@
|
|
|
|
INCLUDES= \
|
|
-I../
|
|
|