-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Makefile #70
base: master
Are you sure you want to change the base?
Update Makefile #70
Conversation
Allows for local installation. This is useful when compiling gdrcopy on a cluster or wherever the user does not have rights to do global installations.
@metere1llnl we are moving the build & install system to autoconf/automake. |
Would BLT (https://github.com/LLNL/blt) be a better alternative in your opinion? |
@metere1llnl I'm not familiar with that. |
lib_install: | ||
makedirs: | ||
@ echo "creating $(DESTLIB) ..." | ||
mkdir -p $(DESTLIB) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isn't /usr/bin/install supposed to create directories when necessary? on my RHEL6:
$ install --help
...
-D create all leading components of DEST except the last,
then copy SOURCE to DEST
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this change still needed?
Allows for local installation. This is useful when compiling gdrcopy on a cluster or wherever the user does not have rights to do global installations.