author: kx <kx@radix-linux.su> 2024-12-20 16:11:07 +0300
committer: kx <kx@radix-linux.su> 2024-12-20 16:11:07 +0300
commit: 868b2b66b564b5c00e3a74d10be45db7151627ac
parent: cce2ae8d3312493b7653358bb4af201d3271377b
Commit Summary:
Diffstat:
1 file changed, 30 insertions, 0 deletions
diff --git a/mpu/Makefile.am b/mpu/Makefile.am
new file mode 100644
index 0000000..6b18b61
--- /dev/null
+++ b/mpu/Makefile.am
@@ -0,0 +1,38 @@
+
+AUTOMAKE_OPTIONS = subdir-objects
+
+lib_LTLIBRARIES = libmpu.la
+
+libmpu_la_SOURCES = mpu-char.h \
+ mpu-symbols.h mpu-emutype.h \
+ mpu-context.c mpu-context.h \
+ mpu-math-errno.c mpu-math-errno.h \
+ mpu-strerror.c mpu-strerror.h \
+ mpu-mtherr.c mpu-mtherr.h \
+ mpu-math-error.c \
+ mpu-warning.c \
+ mpu-integer.c mpu-integer.h \
+ mpu-real.c mpu-real.h \
+ mpu-floatp.c mpu-floatp.h \
+ mpu-ioreal.c mpu-ioreal.h \
+ mpu-m-const.c mpu-m-const.h \
+ st-sin.c st-sin.h \
+ st-cos.c st-cos.h \
+ st-sinh.c st-sinh.h \
+ st-cosh.c st-cosh.h \
+ st-atan2.c st-atan2.h \
+ st-exp.c st-exp.h \
+ st-log.c st-log.h \
+ st-ln.c st-ln.h \
+ st-logtable.c st-logtable.h \
+ st-service.c st-service.h \
+ mpu-math.c mpu-math.h \
+ mpu-tetrade.c
+
+
+libmpu_la_CPPFLAGS = -I$(top_builddir)/include -I. -I$(top_srcdir)
+
+libmpu_la_LIBADD = -lpthread
+
+libmpu_la_LDFLAGS = -version-info @LIBMPU_LT_VERSION_INFO@
+