blob: 035ca794ab2c1c8b61ac70fd722bb3faa939dc68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Copyright © Tavian Barnes <tavianator@tavianator.com>
# SPDX-License-Identifier: 0BSD
# Makefile that exposes make's job control to tests.sh
# BSD make will chdir into ${.OBJDIR} by default, unless we tell it not to
.OBJDIR: .
# Turn off implicit rules
.SUFFIXES:
.DEFAULT::
bash -c 'printf . >&$(READY) && read -r -N1 -u$(DONE)'
|