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