diff options
Diffstat (limited to 'src/lib/math/Makefile')
-rw-r--r-- | src/lib/math/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/math/Makefile b/src/lib/math/Makefile index 672d17fac..ef31b174a 100644 --- a/src/lib/math/Makefile +++ b/src/lib/math/Makefile @@ -38,33 +38,34 @@ O1=\ floor.$O\ fmod.$O\ hypot.$O\ - log.$O\ pow10.$O\ sin.$O\ sqrt.$O\ tan.$O\ + const.$O\ O2=\ asin.$O\ atan2.$O\ - pow.$O\ + log.$O\ sinh.$O\ O3=\ + pow.$O\ tanh.$O\ math.a: a1 a2 a3 a1: $(O1) - $(AR) grc math.a atan.$O exp.$O fabs.$O floor.$O fmod.$O hypot.$O log.$O pow10.$O sin.$O sqrt.$O tan.$O + $(AR) grc math.a atan.$O exp.$O fabs.$O floor.$O fmod.$O hypot.$O pow10.$O sin.$O sqrt.$O tan.$O const.$O rm -f $(O1) a2: $(O2) - $(AR) grc math.a asin.$O atan2.$O pow.$O sinh.$O + $(AR) grc math.a asin.$O atan2.$O log.$O sinh.$O rm -f $(O2) a3: $(O3) - $(AR) grc math.a tanh.$O + $(AR) grc math.a pow.$O tanh.$O rm -f $(O3) newpkg: clean |