mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
13 lines
227 B
Makefile
13 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
|