1 # $NetBSD: shell-csh.mk,v 1.2 2020/10/03 15:21:12 rillig Exp $ 2 # 3 # Tests for using a C shell for running the commands. 4 5 .SHELL: name="csh" path="csh" 6 7 all: 8 # This command is both printed and executed. 9 echo normal 10 11 # This command is only executed. 12 @echo hidden 13 14 # This command is both printed and executed. 15 +echo always 16 17 # This command is both printed and executed. 18 -echo ignore errors 19