]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/usr.bin/make/shell/meta/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / usr.bin / make / shell / meta / Makefile
1 #
2 # In compat mode (the default without -j) a line that contains no shell
3 # meta characters and no shell builtins is not passed to the shell but
4 # executed directly. In our example the ls line without meta characters
5 # will really execute ls, while the line with meta characters will execute
6 # our special shell.
7 #
8 # $FreeBSD$
9
10 .SHELL: path="${.OBJDIR}/sh"
11
12 .PHONY: meta no-meta
13
14 meta:
15         @ls *
16
17 no-meta:
18         @ls -d .