diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-02-03 15:30:53 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-02-03 15:30:53 -0800 |
commit | 1c1ae5ee7243e731c7b44a11400e19bb8dab047b (patch) | |
tree | 7ac329dd1cea01e91530e9f7be0542dc678e60c1 /src/libs/sig/Makefile.am | |
parent | 6c357aefb327faeb6eca8809a6a60d0349dfc076 (diff) |
libs/sig: add sig_ops_inv for additive inverse
aka negation
Diffstat (limited to 'src/libs/sig/Makefile.am')
-rw-r--r-- | src/libs/sig/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/sig/Makefile.am b/src/libs/sig/Makefile.am index efec325..64715fe 100644 --- a/src/libs/sig/Makefile.am +++ b/src/libs/sig/Makefile.am @@ -1,3 +1,3 @@ noinst_LIBRARIES = libsig.a -libsig_a_SOURCES = ops_abs.c ops_ceil.c ops_clamp.c ops_const.c ops_floor.c ops_lerp.c ops_max.c ops_min.c ops_mult.c ops_pow.c ops_rand.c ops_round.c ops_sin.c sig.c sig.h +libsig_a_SOURCES = ops_abs.c ops_ceil.c ops_clamp.c ops_const.c ops_floor.c ops_inv.c ops_lerp.c ops_max.c ops_min.c ops_mult.c ops_pow.c ops_rand.c ops_round.c ops_sin.c sig.c sig.h libsig_a_CPPFLAGS = -I@top_srcdir@/src |