directive-ifnmake.mk revision 1.5
11.5Srillig# $NetBSD: directive-ifnmake.mk,v 1.5 2020/10/05 19:27:48 rillig Exp $ 21.1Srillig# 31.5Srillig# Tests for the .ifnmake directive, which evaluates to true if its argument 41.5Srillig# is _not_ listed in the command-line targets to be created. 51.1Srillig 61.1Srilligall: 71.1Srillig @:; 81.5Srillig 91.5Srillig.ifnmake(test) 101.5Srillig.BEGIN: 111.5Srillig @echo "Don't forget to run the tests (1)" 121.5Srillig.endif 131.5Srillig 141.5Srillig.MAKEFLAGS: test 151.5Srillig 161.5Srillig.ifnmake(test) 171.5Srillig.BEGIN: 181.5Srillig @echo "Don't forget to run the tests (2)" 191.5Srillig.endif 201.5Srillig 211.5Srilligtest: 221.5Srillig @echo "Running the tests" 23