diff options
| author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-04-01 14:07:52 +0000 |
|---|---|---|
| committer | <> | 2013-05-17 14:06:43 +0000 |
| commit | 986bc2ac05bc4c08c6a0ed30c9e97674932ccfeb (patch) | |
| tree | 8346daf16e98e93415195acbf99f09cb5326b73b /unit-tests/comment | |
| download | bmake-tarball-master.tar.gz | |
Diffstat (limited to 'unit-tests/comment')
| -rw-r--r-- | unit-tests/comment | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/unit-tests/comment b/unit-tests/comment new file mode 100644 index 0000000..7dd7dbb --- /dev/null +++ b/unit-tests/comment @@ -0,0 +1,31 @@ +# 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' |
