summaryrefslogtreecommitdiff
path: root/usr.bin/make/unit-tests/comment.mk
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/unit-tests/comment.mk')
-rw-r--r--usr.bin/make/unit-tests/comment.mk31
1 files changed, 0 insertions, 31 deletions
diff --git a/usr.bin/make/unit-tests/comment.mk b/usr.bin/make/unit-tests/comment.mk
deleted file mode 100644
index 7dd7dbb..0000000
--- a/usr.bin/make/unit-tests/comment.mk
+++ /dev/null
@@ -1,31 +0,0 @@
-# This is a comment
-.if ${MACHINE_ARCH} == something
-FOO=bar
-.endif
-
-#\
- Multiline comment
-
-BAR=# defined
-FOOBAR= # defined
-
-# This is an escaped comment \
-that keeps going until the end of this line
-
-# Another escaped comment \
-that \
-goes \
-on
-
-# This is NOT an escaped comment due to the double backslashes \\
-all: hi foo bar
- @echo comment testing done
-
-hi:
- @echo comment testing start
-
-foo:
- @echo this is $@
-
-bar:
- @echo This is how a comment looks: '# comment'