mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
ae638c0850
- Get clone() working on FreeBSD - Increase some Python build quotas - Add more atomic builtins to chibicc - Fix ASAN poisoning of alloca() memory - Make MODE= mandatory link path tinier - Improve the examples folder a little bit - Start working on some more resource limits - Make the linenoise auto-complete UI as good as GNU readline - Update compile.com, avoiding AVX codegen on non-AVX systems - Make sure empty path to syscalls like opendir raises ENOENT - Correctly polyfill ENOENT vs. ENOTDIR on the New Technology - Port bestline's paredit features to //third_party/linenoise - Remove workarounds for RHEL 5.0 bugs that were fixed in 5.1
26 lines
905 B
Makefile
26 lines
905 B
Makefile
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
|
|
|
.PHONY: o/$(MODE)/test/libc
|
|
o/$(MODE)/test/libc: \
|
|
o/$(MODE)/test/libc/alg \
|
|
o/$(MODE)/test/libc/bits \
|
|
o/$(MODE)/test/libc/calls \
|
|
o/$(MODE)/test/libc/dns \
|
|
o/$(MODE)/test/libc/fmt \
|
|
o/$(MODE)/test/libc/intrin \
|
|
o/$(MODE)/test/libc/log \
|
|
o/$(MODE)/test/libc/mem \
|
|
o/$(MODE)/test/libc/nexgen32e \
|
|
o/$(MODE)/test/libc/rand \
|
|
o/$(MODE)/test/libc/release \
|
|
o/$(MODE)/test/libc/runtime \
|
|
o/$(MODE)/test/libc/sock \
|
|
o/$(MODE)/test/libc/stdio \
|
|
o/$(MODE)/test/libc/str \
|
|
o/$(MODE)/test/libc/thread \
|
|
o/$(MODE)/test/libc/time \
|
|
o/$(MODE)/test/libc/tinymath \
|
|
o/$(MODE)/test/libc/unicode \
|
|
o/$(MODE)/test/libc/x \
|
|
o/$(MODE)/test/libc/xed
|