mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
14 lines
227 B
Makefile
14 lines
227 B
Makefile
#T returncode: 2
|
|
|
|
# The dependencies of the command rule of a single-colon target are resolved before the rules without commands.
|
|
|
|
all: export
|
|
|
|
export:
|
|
sleep 1
|
|
touch somefile
|
|
|
|
all: somefile
|
|
test -f somefile
|
|
@echo TEST-PASS
|