Home | History | Annotate | Line # | Download | only in unit-tests
      1  1.2  rillig # $NetBSD: depsrc-end.mk,v 1.2 2024/04/27 20:41:32 rillig Exp $
      2  1.1  rillig #
      3  1.2  rillig # Demonstrate an edge case in which .BEGIN depends on .END, which sounds a bit
      4  1.1  rillig # paradox but works since these special nodes are not in the dependency
      5  1.1  rillig # hierarchy where the cycles are detected.
      6  1.1  rillig 
      7  1.1  rillig .BEGIN:
      8  1.1  rillig 	: 'Making ${.TARGET}.'
      9  1.1  rillig .END:
     10  1.1  rillig 	: 'Making ${.TARGET}.'
     11  1.1  rillig all:
     12  1.1  rillig 	: 'Making ${.TARGET}.'
     13  1.1  rillig 
     14  1.1  rillig .BEGIN: .END
     15