Closed utzig closed 6 years ago
@dancek FYI, this implements #27 .
Great, thanks!
It would be good to create the PREFIX/bin directory if it doesn't exist (probably mkdir -p
in any case is safe). Looks like most other projects do that.
Turns out the version of install
on MacOS doesn't support the -D
argument (ie. it's a GNU extension). The -d
argument should work.
Sorry to be a lot of trouble :)
-d
only creates directories, so I changed to the first suggestion of just using mkdir -p
.
Thank you very much!
Add a make install target and make
PREFIX
mandatory. This was requested by Homebrew.