diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2014-01-06 12:31:57 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2014-01-06 12:31:57 +0000 |
commit | b748d53e5003700b55ad6a23943283115952644a (patch) | |
tree | ca16c1c75e911a8fe2aa648a0f28b7d210359cc1 /regress/usr.bin/make/mk34 | |
parent | 249e2c8764a8698a7fc5d17b73603ae58bd00437 (diff) |
turn mk34 into a proper full-fledged test.
forgot to link t37 into the build
Diffstat (limited to 'regress/usr.bin/make/mk34')
-rw-r--r-- | regress/usr.bin/make/mk34 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/regress/usr.bin/make/mk34 b/regress/usr.bin/make/mk34 index e395baf7921..3b4628a784e 100644 --- a/regress/usr.bin/make/mk34 +++ b/regress/usr.bin/make/mk34 @@ -1,5 +1,10 @@ -# $OpenBSD: mk34,v 1.1 2013/12/26 10:25:07 espie Exp $ +# $OpenBSD: mk34,v 1.2 2014/01/06 12:31:56 espie Exp $ # should produce similar error message with -j and without -j -thing.o: ${.PREFIX}.vis - @echo trythis +t38.a: ${.PREFIX}.b + @echo okay + +t38.b: + @touch $@ + +.SUFFIXES: .a .b |