File: tests.mk

package info (click to toggle)
bfs 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,484 kB
  • sloc: ansic: 21,302; sh: 3,227; makefile: 221
file content (13 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (2)
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)'