mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
17 lines
401 B
Makefile
17 lines
401 B
Makefile
#
|
|
# 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.
|
|
#
|
|
|
|
.SHELL: path="${.OBJDIR}/sh"
|
|
|
|
.PHONY: meta no-meta
|
|
|
|
meta:
|
|
@ls *
|
|
|
|
no-meta:
|
|
@ls -d .
|