[Solved] Run an executable after moving it to a different directory in the make file [closed]

[ad_1]

You moved the program to ../Data/Derived/Release.

Then you tried to run ./Data/Derived/Release.

These are not the same path. .. means “the parent directory”, but . means “this directory”.

Looks like you missed out a dot.

[ad_2]

solved Run an executable after moving it to a different directory in the make file [closed]