Home | History | Annotate | Line # | Download | only in unit-tests
depsrc-make.mk revision 1.3
      1 # $NetBSD: depsrc-make.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $
      2 #
      3 # Tests for the special source .MAKE in dependency declarations, which
      4 # executes the commands of the target even if the -n or -t command line
      5 # options are given.
      6 
      7 .MAKEFLAGS: -n
      8 
      9 all: this-is-made
     10 all: this-is-not-made
     11 
     12 this-is-made: .MAKE
     13 	@echo ${.TARGET} is made.
     14 
     15 this-is-not-made:
     16 	@echo ${.TARGET} is just echoed.
     17