mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
f0701d2a24
- Polyfill pselect() on Windows - Add -O NOFILE flag to pledge.com - Polyfill ppoll() on NetBSD, XNU, and Windows - Support negative numbers and errno in sizetol() - Add .RSS, .NOFILE, and .MAXCORE to Landlock Make - Fix issue with .PLEDGE preventing touching of output files - Add __watch() function (like ftrace) for logging memory changes
31 lines
1,019 B
Makefile
31 lines
1,019 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───────────────────────┘
|
||
#
|
||
# SYNOPSIS
|
||
#
|
||
# Cosmopolitan Online Testing
|
||
#
|
||
# OVERVIEW
|
||
#
|
||
# make test HOSTS="rhel5 windows mac freebsd openbsd wsl"
|
||
#
|
||
# DESCRIPTION
|
||
#
|
||
# This code deploys and spawns testing infrastructure to a fleet of
|
||
# virtual machines running the various supported platforms. This is
|
||
# super trivial since αcτµαlly pδrταblε εxεcµταblε is an autonomous
|
||
# format requiring one simple file copy. Latencies are outstanding.
|
||
# Configuration is trivial using /etc/hosts and ~/.ssh/config.
|
||
#
|
||
# SEE ALSO
|
||
#
|
||
# - tool/build/runit.c
|
||
# - tool/build/runitd.c
|
||
|
||
.PRECIOUS: o/$(MODE)/%.com.ok
|
||
o/$(MODE)/%.com.ok: .PLEDGE = stdio rpath wpath cpath proc fattr inet
|
||
o/$(MODE)/%.com.ok: \
|
||
o/$(MODE)/tool/build/runit.com \
|
||
o/$(MODE)/tool/build/runitd.com \
|
||
o/$(MODE)/%.com
|
||
@$(COMPILE) -wATEST -tT$@ $^ $(HOSTS)
|