-
Notifications
You must be signed in to change notification settings - Fork 9
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
Refactor Makefile #7
base: master
Are you sure you want to change the base?
Conversation
351e0b1
to
48fb500
Compare
I don't like splitting the Makefiles. It's common to use a git checkout directly in /Programs/Scripts, meaning I'd end up with /bin/Makefile, etc. Also, I'd prefer if it kept echoing the gcc commands. It's better for troubleshooting. |
c382624
to
9cfa246
Compare
45fff11
to
0d104ff
Compare
done | ||
cd $(PYTHON_SITE) && \ | ||
for f in *.py; \ | ||
do python -c "import `basename $$f .py`"; \ |
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.
Any particular reason for removing the generation of .pyc files?
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.
ops! my bad! Added .pyc files generation again
0d104ff
to
9b8bf5e
Compare
Reading this PR more carefully, if I'm following correctly, one thing it changes is that the files were moved around, so that one can't just clone the git repo at /Programs/Scripts/git, run I think it's very convenient to use the git repo as a "live" installation, and it would be sad to lose that functionality. |
7971381
to
d75501f
Compare
d75501f
to
77a0fb0
Compare
Removed the cpio in the Makefile.
Build distributed into several Makefiles.