blob: 75279d7d57fd1a89b5bc67f3678f68a34045ac22 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# $NetBSD: sh-leading-plus.mk,v 1.3 2020/08/23 14:46:33 rillig Exp $
#
# Tests for shell commands preceded by a '+', to run them even if
# the command line option -n is given.
all:
@echo 'this command is not run'
@+echo 'this command is run'
|