xref: /netbsd-src/usr.bin/make/unit-tests/sh-leading-plus.mk (revision 73d56d5b0be8704e4f0a7e8221a2c7309572c9a1)
1# $NetBSD: sh-leading-plus.mk,v 1.3 2020/08/23 14:46:33 rillig Exp $
2#
3# Tests for shell commands preceded by a '+', to run them even if
4# the command line option -n is given.
5
6all:
7	@echo 'this command is not run'
8	@+echo 'this command is run'
9