-
Notifications
You must be signed in to change notification settings - Fork 180
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
Split Makefile to be self-contained per directory - resubmit #553
Conversation
… thomasjacquin-master
@EricClaeys The |
config.sh.repo: Since config.sh is sourced after variables.sh, the following lines in config.sh.repo can use $ALLSKY_CONFIG instead of $ALLSKY_HOME/config:
config_repo/Makefile: line 60: notification_images/Makefile: line 37: @linuxkidd, @ckuethe, Also, how do you put @ names in yellow? When I do an @name it doesn't have a yellow background. |
The yellow / brown or on the name is to highlight your own name so it's easier for you to spot. Yes, I agree.. I'd much prefer you compile / test it. It runs great for me with a fresh install on Buster. |
I won't have access to my Pi for another week. @ckuethe, are you able to install Michael's PR on your Pi and test it? I think if it works for 2 people it should be good to go. |
Yeah, I'm reading through it now and will set up a test machine tomorrow. |
Ok, I moved the I also took the time to make an Uninstall function, including |
… thomasjacquin-master
Re-submit for accidentally closed PR #545
I think this addresses all the comments and concerns from that earlier PR. Please let me know if you find anything else that needs attention.
Split the
src/Makefile
out to each directory where installation actions are needed:The
Makefile
in each sub-directory can be called individually and it'll perform the proper actions, independent of other directories.The top-level
Makefile
calls all sub-dir's functions as needed.Tweaked
install.sh
to use the top-levelMakefile
.