1

Running the install command in PowerShell gives me:

$ install
install : The term 'install' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ install
+ ~~~~~~~
+ CategoryInfo          : ObjectNotFound: (install:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

Basically I want to provide a make install target for Windows developers. On linux, make install uses the install command to move it from a local path onto the system path. Is there an equivalent command to install for Windows users?

1 Answers1

1

No, there isn't equivalent for GNU's install. However you can probably replace it just by copying the binaries and updating %PATH% variable accordingly.