I've a make file which runs several of targets , now I want to add new target that will run after some timeout, how can I do it ?
e.g.
execbin: build start run
This is running ok, however I want to add new target called test which will run after two seconds (some timeout) , how can I do that ?
execbin: build start run test
test should execute after the run has finished and also wait 2 seconds before it start , is it possible ?