xref: /freebsd/contrib/bmake/unit-tests/shell-custom.mk (revision e8d8bef961a50d4dc22501cde4fb9fb0be1b2532)
1# $NetBSD: shell-custom.mk,v 1.1 2020/10/03 14:39:36 rillig Exp $
2#
3# Tests for using a custom shell for running the commands.
4
5.SHELL: name="sh" path="echo"
6# TODO: demonstrate the other shell features as well:
7# - error control
8# - output control
9
10all:
11	: normal
12	@: hidden
13	+: always
14	-: ignore errors
15