Home | History | Annotate | Line # | Download | only in unit-tests
      1  1.3  rillig # $NetBSD: depsrc-exec.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $
      2  1.1  rillig #
      3  1.3  rillig # Tests for the special source .EXEC in dependency declarations,
      4  1.3  rillig # which always executes the commands, even if the target is up to date.
      5  1.3  rillig # The target itself is considered up to date.
      6  1.3  rillig #
      7  1.3  rillig # TODO: Describe possible use cases for .EXEC.
      8  1.3  rillig 
      9  1.3  rillig all: ${MAKEFILE} ${MAKEFILE:H}/depsrc.mk
     10  1.1  rillig 
     11  1.3  rillig ${MAKEFILE}: .EXEC
     12  1.3  rillig 	: ${.TARGET:T}: This is always executed.
     13  1.1  rillig 
     14  1.3  rillig ${MAKEFILE:H}/depsrc.mk:
     15  1.3  rillig 	: This is not executed.
     16  1.3  rillig 	+: ${.TARGET:T}: This is not executed as well.
     17