blob: 77541ba90133245fc3324faf9a29c6abbb5df961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
AUTOMAKE_OPTIONS = subdir-objects
lib_LTLIBRARIES = libmpuio.la
libmpuio_la_SOURCES = mpu-symbols.h \
libio/mpu-libio.h \
string/mpu-string.h \
libio/mpu-file.c \
libio/mpu-buffer.c \
libio/mpu-genops.c \
libio/mpu-lock.c \
libio/mpu-error.c \
libio/mpu-utf8.c \
libio/mpu-string.c \
libio/mpu-cookie.c \
libio/mpu-vfprintf.c \
libio/mpu-printf.c \
libio/mpu-vfscanf.c \
libio/mpu-scanf.c \
string/mpu-str16ing.c \
string/mpu-str8ing.c \
string/mpu-utf8ing.c
libmpuio_la_CPPFLAGS = -I$(top_srcdir)/include -I. -I$(top_srcdir) -I$(top_srcdir)/src -I$(top_srcdir)/src/libio -I$(top_srcdir)/src/string
libmpuio_la_LIBADD = -lpthread
libmpuio_la_LDFLAGS = -version-info @LIBMPUIO_LT_VERSION_INFO@
|