Skip to content
Snippets Groups Projects
Commit 6f434b0e authored by Raymond Toy's avatar Raymond Toy
Browse files

Compile the fdlibm atan2.

.
parent fdc6db4b
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,8 @@ OS_SRC += k_sin.c k_cos.c k_tan.c s_sin.c s_cos.c s_tan.c sincos.c \
s_log1p.c s_expm1.c e_pow.c e_exp.c e_log.c \
e_acos.c e_asin.c s_atan.c \
e_cosh.c e_sinh.c s_tanh.c \
e_acosh.c s_asinh.c e_atanh.c
e_acosh.c s_asinh.c e_atanh.c \
e_atan2.c
k_sin.o : k_sin.c
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
......@@ -72,3 +73,6 @@ e_asinh.o : s_asinh.c
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
e_atanh.o : e_atanh.c
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
e_atan2.o : e_atan2.c
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment