Home | History | Annotate | Line # | Download | only in unit-tests
      1 # $NetBSD: depsrc-made.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $
      2 #
      3 # Tests for the special source .MADE in dependency declarations,
      4 # which marks all its dependencies as already made, so their commands
      5 # don't need to be executed.
      6 #
      7 # TODO: Describe a possible use case for .MADE.
      8 
      9 all: part1 part2
     10 
     11 part1: chapter11 chapter12 .MADE
     12 part2: chapter21 chapter22
     13 
     14 chapter11 chapter12 chapter21 chapter22:
     15 	: Making ${.TARGET}
     16