mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
592f6ebc20
- Write some more unit tests - memcpy() on ARM is now faster - Address the Musl complex math FIXME comments - Some libm funcs like pow() now support setting errno - Import the latest and greatest math functions from ARM - Use more accurate atan2f() and log1pf() implementations - atoi() and atol() will no longer saturate or clobber errno
11 lines
398 B
Makefile
11 lines
398 B
Makefile
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
#── vi: set noet ft=make ts=8 sw=8 fenc=utf-8 :vi ────────────────────┘
|
|
|
|
.PHONY: o/$(MODE)/test
|
|
o/$(MODE)/test: o/$(MODE)/test/dsp \
|
|
o/$(MODE)/test/libc \
|
|
o/$(MODE)/test/libcxx \
|
|
o/$(MODE)/test/math \
|
|
o/$(MODE)/test/net \
|
|
o/$(MODE)/test/posix \
|
|
o/$(MODE)/test/tool
|