Makefile.test revision 296373
1139825Simp#
26391Sugen# In compat mode (the default without -j) a line that contains no shell
36391Sugen# meta characters and no shell builtins is not passed to the shell but
46391Sugen# executed directly. In our example the ls line without meta characters
56391Sugen# will really execute ls, while the line with meta characters will execute
66391Sugen# our special shell.
76391Sugen#
86391Sugen# $FreeBSD: releng/10.3/usr.bin/bmake/tests/shell/meta/Makefile.test 263346 2014-03-19 12:29:20Z jmmv $
96391Sugen
106391Sugen.SHELL: path="${.OBJDIR}/sh"
116391Sugen
126391Sugen.PHONY: meta no-meta
136391Sugen
1455205Spetermeta:
1555205Speter	@ls *
166391Sugen
176391Sugenno-meta:
1824034Sbde	@ls -d .
1924034Sbde