diff options
Diffstat (limited to 'unit-tests/order.mk')
-rw-r--r-- | unit-tests/order.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unit-tests/order.mk b/unit-tests/order.mk index f90b627d9e5f..9b94016c1841 100644 --- a/unit-tests/order.mk +++ b/unit-tests/order.mk @@ -1,10 +1,12 @@ -# $NetBSD: order.mk,v 1.1 2014/08/21 13:44:51 apb Exp $ +# $NetBSD: order.mk,v 1.2 2020/11/09 20:50:56 rillig Exp $ # Test that .ORDER is handled correctly. # The explicit dependency the.o: the.h will make us examine the.h # the .ORDER will prevent us building it immediately, # we should then examine the.c rather than stop. +.MAKEFLAGS: -j1 + all: the.o .ORDER: the.c the.h |