1# $NetBSD: opt-keep-going.mk,v 1.3 2020/08/23 14:28:04 rillig Exp $ 2# 3# Tests for the -k command line option, which stops building a target as soon 4# as an error is detected, but continues building the other, independent 5# targets, as far as possible. 6 7all: dependency other 8 9dependency: 10 @echo dependency 1 11 @false 12 @echo dependency 2 13 @:; exit 7 14 @echo dependency 3 15 16other: 17 @echo other 1 18 @false 19 @echo other 2 20 21all: 22 @echo main 1 23 @false 24 @echo main 2 25