summaryrefslogtreecommitdiff
path: root/usr.bin/make/unit-tests/impsrc.mk
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-03-15 13:08:45 -0500
committerKiyoshi Aman <kiyoshi.aman+adelie@gmail.com>2019-03-15 13:08:45 -0500
commit09cff699a514e452eccc6420f1213967b767cb3e (patch)
treee9888cd55d03c840b20d080af4e472453c910835 /usr.bin/make/unit-tests/impsrc.mk
parentffeabdfb18fd21102159641f5258e8b1c473dec2 (diff)
downloaduserland-09cff699a514e452eccc6420f1213967b767cb3e.tar.gz
userland-09cff699a514e452eccc6420f1213967b767cb3e.tar.bz2
userland-09cff699a514e452eccc6420f1213967b767cb3e.tar.xz
userland-09cff699a514e452eccc6420f1213967b767cb3e.zip
rm bin/sh usr.bin/make: utilities provided by other packages
Diffstat (limited to 'usr.bin/make/unit-tests/impsrc.mk')
-rw-r--r--usr.bin/make/unit-tests/impsrc.mk43
1 files changed, 0 insertions, 43 deletions
diff --git a/usr.bin/make/unit-tests/impsrc.mk b/usr.bin/make/unit-tests/impsrc.mk
deleted file mode 100644
index 95ae0c3..0000000
--- a/usr.bin/make/unit-tests/impsrc.mk
+++ /dev/null
@@ -1,43 +0,0 @@
-# $NetBSD: impsrc.mk,v 1.2 2014/08/30 22:21:07 sjg Exp $
-
-# Does ${.IMPSRC} work properly?
-# It should be set, in order of precedence, to ${.TARGET} of:
-# 1) the implied source of a transformation rule,
-# 2) the first prerequisite from the dependency line of an explicit rule, or
-# 3) the first prerequisite of an explicit rule.
-#
-
-all: target1.z target2 target3 target4
-
-.SUFFIXES: .x .y .z
-
-.x.y: source1
- @echo 'expected: target1.x'
- @echo 'actual: $<'
-
-.y.z: source2
- @echo 'expected: target1.y'
- @echo 'actual: $<'
-
-target1.y: source3
-
-target1.x: source4
- @echo 'expected: source4'
- @echo 'actual: $<'
-
-target2: source1 source2
- @echo 'expected: source1'
- @echo 'actual: $<'
-
-target3: source1
-target3: source2 source3
- @echo 'expected: source2'
- @echo 'actual: $<'
-
-target4: source1
-target4:
- @echo 'expected: source1'
- @echo 'actual: $<'
-
-source1 source2 source3 source4:
-