opt-debug-graph1.mk revision 1.2
1# $NetBSD: opt-debug-graph1.mk,v 1.2 2020/09/05 06:36:40 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
17
18unmade-target-no-sources:
19
20all:
21	@:;
22