27 lines
400 B
Plaintext
27 lines
400 B
Plaintext
#
|
|
# A Makefile to test pmake's handling of the -B flag
|
|
#
|
|
# $Id: onecmd.test,v 2.0 1990/01/11 20:44:14 arc Exp $
|
|
#
|
|
.MAKEFLAGS : -B
|
|
|
|
all : a b t2
|
|
|
|
a : .SILENT
|
|
-echo biff me
|
|
|
|
b : .IGNORE
|
|
false
|
|
: this should execute since this target has .IGNORE set
|
|
|
|
t2 : .MAKE
|
|
$(MAKE) -f onecmd.test -lk c d
|
|
|
|
c :
|
|
ls -l TESTALL
|
|
false
|
|
ls -l TESTALL
|
|
|
|
d :
|
|
: this should execute since it dependeth not on 'c'
|