login: SIGINT should interrupt motd printing
[unleashed.git] / bin / bmake / unit-tests / order.mk
blobf90b627d9e5f13267c7aff93c7d32a6f2247aa43
1 # $NetBSD: order.mk,v 1.1 2014/08/21 13:44:51 apb Exp $
3 # Test that .ORDER is handled correctly.
4 # The explicit dependency the.o: the.h will make us examine the.h
5 # the .ORDER will prevent us building it immediately,
6 # we should then examine the.c rather than stop.
8 all: the.o
10 .ORDER: the.c the.h
12 the.c the.h:
13 @echo Making $@
15 .SUFFIXES: .o .c
17 .c.o:
18 @echo Making $@ from $?
20 the.o: the.h