You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
619 B
29 lines
619 B
ACLOCAL_AMFLAGS = -I m4
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
AM_CFLAGS += -I../include/
|
|
|
|
TRIO = stream.c \
|
|
read.c \
|
|
write.c \
|
|
socket.c \
|
|
socket_init.c \
|
|
socket_accept.c \
|
|
socket_nonblock.c \
|
|
socket_close.c \
|
|
socket_shutdown.c \
|
|
socket_shutdown_read.c \
|
|
socket_shutdown_write.c \
|
|
tcp_socket.c \
|
|
udp_socket.c \
|
|
remote_data.c \
|
|
remote_data_set_data.c \
|
|
i_socket.c \
|
|
i_reader.c \
|
|
i_writer.c
|
|
|
|
lib_LTLIBRARIES = libtrio.la
|
|
|
|
libtrio_la_SOURCES = $(TRIO)
|
|
libtrio_la_CFLAGS = $(AM_CFLAGS)
|
|
libtrio_la_LIBADD =
|