mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-16 09:01:59 -05:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
|
import feature ;
|
||
|
import toolset ;
|
||
|
import os ;
|
||
|
import testing ;
|
||
|
|
||
|
path-constant HERE : . ;
|
||
|
make main.cpp : main_cpp.pro : @do-something ;
|
||
|
time main.time : main.cpp ;
|
||
|
|
||
|
actions do-something
|
||
|
{
|
||
|
sleep 2 && echo "$(<)" > "$(<)"
|
||
|
}
|