]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/opt-debug-graph1.mk
Update to bmake-20201101
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / opt-debug-graph1.mk
1 # $NetBSD: opt-debug-graph1.mk,v 1.3 2020/09/05 06:46:12 rillig Exp $
2 #
3 # Tests for the -dg1 command line option, which prints the input
4 # graph before making anything.
5
6 .MAKEFLAGS: -dg1
7
8 all: made-target made-target-no-sources
9
10 made-target: made-source
11
12 made-source:
13
14 made-target-no-sources:
15
16 unmade-target: unmade-sources unmade-silent-source
17
18 .SILENT: unmade-silent-source
19
20 unmade-target-no-sources:
21
22 all:
23         @:;