Home | History | Annotate | Line # | Download | only in unit-tests
shell-csh.mk revision 1.3
      1 # $NetBSD: shell-csh.mk,v 1.3 2020/10/03 15:23:42 rillig Exp $
      2 #
      3 # Tests for using a C shell for running the commands.
      4 
      5 .SHELL: name="csh" path="${:!which csh!}"
      6 
      7 # The -j option is needed to cover the code in JobOutput.
      8 #
      9 # FIXME: The "se " does not belong in the output.
     10 .MAKEFLAGS: -j1
     11 
     12 all:
     13 	# This command is both printed and executed.
     14 	echo normal
     15 
     16 	# This command is only executed.
     17 	@echo hidden
     18 
     19 	# This command is both printed and executed.
     20 	+echo always
     21 
     22 	# This command is both printed and executed.
     23 	-echo ignore errors
     24