mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-07 09:31:28 +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
|