Math Processor Unit Library

libmpu – library of arithmetic functions for integer, real, and complex numbers of increased digit capacity

16 Commits   0 Branches   2 Tags
868b2b66 (kx 2024-12-20 16:11:07 +0300  1) 
868b2b66 (kx 2024-12-20 16:11:07 +0300  2) AUTOMAKE_OPTIONS = subdir-objects
868b2b66 (kx 2024-12-20 16:11:07 +0300  3) 
868b2b66 (kx 2024-12-20 16:11:07 +0300  4) lib_LTLIBRARIES = libmpu.la
868b2b66 (kx 2024-12-20 16:11:07 +0300  5) 
868b2b66 (kx 2024-12-20 16:11:07 +0300  6) libmpu_la_SOURCES = mpu-char.h                         \
868b2b66 (kx 2024-12-20 16:11:07 +0300  7)                     mpu-symbols.h     mpu-emutype.h    \
868b2b66 (kx 2024-12-20 16:11:07 +0300  8)                     mpu-context.c     mpu-context.h    \
868b2b66 (kx 2024-12-20 16:11:07 +0300  9)                     mpu-math-errno.c  mpu-math-errno.h \
868b2b66 (kx 2024-12-20 16:11:07 +0300 10)                     mpu-strerror.c    mpu-strerror.h   \
868b2b66 (kx 2024-12-20 16:11:07 +0300 11)                     mpu-mtherr.c      mpu-mtherr.h     \
868b2b66 (kx 2024-12-20 16:11:07 +0300 12)                     mpu-math-error.c  \
868b2b66 (kx 2024-12-20 16:11:07 +0300 13)                     mpu-warning.c     \
868b2b66 (kx 2024-12-20 16:11:07 +0300 14)                     mpu-integer.c     mpu-integer.h    \
868b2b66 (kx 2024-12-20 16:11:07 +0300 15)                     mpu-real.c        mpu-real.h       \
868b2b66 (kx 2024-12-20 16:11:07 +0300 16)                     mpu-floatp.c      mpu-floatp.h     \
868b2b66 (kx 2024-12-20 16:11:07 +0300 17)                     mpu-ioreal.c      mpu-ioreal.h     \
868b2b66 (kx 2024-12-20 16:11:07 +0300 18)                     mpu-m-const.c     mpu-m-const.h    \
868b2b66 (kx 2024-12-20 16:11:07 +0300 19)                     st-sin.c          st-sin.h         \
868b2b66 (kx 2024-12-20 16:11:07 +0300 20)                     st-cos.c          st-cos.h         \
868b2b66 (kx 2024-12-20 16:11:07 +0300 21)                     st-sinh.c         st-sinh.h        \
868b2b66 (kx 2024-12-20 16:11:07 +0300 22)                     st-cosh.c         st-cosh.h        \
868b2b66 (kx 2024-12-20 16:11:07 +0300 23)                     st-atan2.c        st-atan2.h       \
868b2b66 (kx 2024-12-20 16:11:07 +0300 24)                     st-exp.c          st-exp.h         \
868b2b66 (kx 2024-12-20 16:11:07 +0300 25)                     st-log.c          st-log.h         \
868b2b66 (kx 2024-12-20 16:11:07 +0300 26)                     st-ln.c           st-ln.h          \
868b2b66 (kx 2024-12-20 16:11:07 +0300 27)                     st-logtable.c     st-logtable.h    \
868b2b66 (kx 2024-12-20 16:11:07 +0300 28)                     st-service.c      st-service.h     \
868b2b66 (kx 2024-12-20 16:11:07 +0300 29)                     mpu-math.c        mpu-math.h       \
868b2b66 (kx 2024-12-20 16:11:07 +0300 30)                     mpu-tetrade.c
868b2b66 (kx 2024-12-20 16:11:07 +0300 31) 
868b2b66 (kx 2024-12-20 16:11:07 +0300 32) 
868b2b66 (kx 2024-12-20 16:11:07 +0300 33) libmpu_la_CPPFLAGS = -I$(top_builddir)/include -I. -I$(top_srcdir)
868b2b66 (kx 2024-12-20 16:11:07 +0300 34) 
868b2b66 (kx 2024-12-20 16:11:07 +0300 35) libmpu_la_LIBADD = -lpthread
868b2b66 (kx 2024-12-20 16:11:07 +0300 36) 
868b2b66 (kx 2024-12-20 16:11:07 +0300 37) libmpu_la_LDFLAGS = -version-info @LIBMPU_LT_VERSION_INFO@
868b2b66 (kx 2024-12-20 16:11:07 +0300 38)