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