xref: /freebsd/contrib/bmake/unit-tests/depsrc-recursive.mk (revision 956e45f6fb3e18b8e89b1341708db60c30bb9f27)
1*956e45f6SSimon J. Gerraty# $NetBSD: depsrc-recursive.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $
22c3632d1SSimon J. Gerraty#
3*956e45f6SSimon J. Gerraty# Tests for the special source .RECURSIVE in dependency declarations,
4*956e45f6SSimon J. Gerraty# which executes the commands of the target even if the -n or -t command
5*956e45f6SSimon J. Gerraty# line options are given.
62c3632d1SSimon J. Gerraty
7*956e45f6SSimon J. Gerraty.MAKEFLAGS: -n
82c3632d1SSimon J. Gerraty
9*956e45f6SSimon J. Gerratyall: this-is-made
10*956e45f6SSimon J. Gerratyall: this-is-not-made
11*956e45f6SSimon J. Gerraty
12*956e45f6SSimon J. Gerratythis-is-made: .RECURSIVE
13*956e45f6SSimon J. Gerraty	@echo ${.TARGET} is made.
14*956e45f6SSimon J. Gerraty
15*956e45f6SSimon J. Gerratythis-is-not-made:
16*956e45f6SSimon J. Gerraty	@echo ${.TARGET} is just echoed.
17