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