summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/tests/shell/meta/Makefile.test
blob: bcf19d052bbc7490980ce3b0c79c96f829f73844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# In compat mode (the default without -j) a line that contains no shell
# meta characters and no shell builtins is not passed to the shell but
# executed directly. In our example the ls line without meta characters
# will really execute ls, while the line with meta characters will execute
# our special shell.
#
# $FreeBSD$

.SHELL: path="${.OBJDIR}/sh"

.PHONY: meta no-meta

meta:
	@ls *

no-meta:
	@ls -d .
OpenPOWER on IntegriCloud