Makefile.test revision 276389
192108Sphk#
292108Sphk# In compat mode (the default without -j) a line that contains no shell
392108Sphk# meta characters and no shell builtins is not passed to the shell but
492108Sphk# executed directly. In our example the ls line without meta characters
592108Sphk# will really execute ls, while the line with meta characters will execute
692108Sphk# our special shell.
792108Sphk#
892108Sphk# $FreeBSD: stable/10/usr.bin/bmake/tests/shell/meta/Makefile.test 263346 2014-03-19 12:29:20Z jmmv $
992108Sphk
1092108Sphk.SHELL: path="${.OBJDIR}/sh"
1192108Sphk
1292108Sphk.PHONY: meta no-meta
1392108Sphk
1492108Sphkmeta:
1592108Sphk	@ls *
1692108Sphk
1792108Sphkno-meta:
1892108Sphk	@ls -d .
1992108Sphk