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
8all: made-target made-target-no-sources
9
10made-target: made-source
11
12made-source:
13
14made-target-no-sources:
15
16unmade-target: unmade-sources unmade-silent-source
17
18.SILENT: unmade-silent-source
19
20unmade-target-no-sources:
21
22all:
23	@:;
24