mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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
|