summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* extend "make clean"0.21.1Stefan Behnel2014-10-181-0/+1
|
* Makefile: checkout all missing files for repo targetBrandon Casey2011-08-241-1/+1
| | | | | | Rather than try to maintain a list of the file differences between the git repository and the source distribution tarball, just get a listing from git itself and use it to check out the missing files.
* Makefile: improve repo creation target, avoid := notationBrandon Casey2011-08-241-8/+5
| | | | | | | | | | | | | | | | | | | | | | The := notation is problematic here since it causes the statements on the right hand side to be dereferenced immediately even if the repo or .git target was not specified. When the source is checked out from a git clone, the .gitrev file does not exist, but the '$(shell cat .gitrev)' sequence is executed every time make is called and it produces an error message. Also, the '$(shell mktemp -d tmprepo.XXXXXX)' sequence is executed every time make is called, which creates a new unique tmprepo.XXXXXX directory each time. So, let's rework this target so that the := notation is avoided, and also to make it a little more efficient by avoiding an unnecessary checkout of the repository. There are two functional changes: 1) the temporary directory will just be called ".repo_tmp" and it will be overwritten each time 'make repo' is called, and 2) the checked out branch will keep its default name rather than adopting a new name 'working'. The user can create a new branch if they desire and the original remote branch state is already available in origin/master.
* Fix make repo.Robert Bradshaw2011-02-241-1/+4
|
* Update "make repo" to use git.Robert Bradshaw2011-01-181-10/+9
|
* removed 'test3' make target - 'make PYTHON=python3 test' now works out of ↵Stefan Behnel2010-07-281-4/+0
| | | | the box with Python 3
* fix Makefile, clean more *.py[co] filesLisandro Dalcin2010-03-111-1/+1
|
* Also copy .hgignoreRobert Bradshaw2009-11-231-0/+1
|
* Makefile target for repo.Robert Bradshaw2009-11-221-0/+13
|
* Better makefile clean.Robert Bradshaw2009-10-241-5/+5
| | | | Bug and fix reported by Mark Lodato.
* build and install "Cython.Runtime.refnanny", use it as a fallback if a bare ↵Lisandro Dalcin2009-02-031-0/+1
| | | | "refnanny" module is not available for import
* update clean target in makefileLisandro Dalcin2008-12-201-1/+4
|
* Makefile fixStefan Behnel2008-08-031-2/+2
|
* Makefile enhancements.kirr@landau.phys.spbu.ru2008-08-021-0/+6
|
* missing cleanup in 'make clean'Stefan Behnel2008-07-271-0/+1
|
* status output from 'make test' targetStefan Behnel2008-07-101-2/+2
|
* S5 theme for Cython, 'make s5' target to build slides in Doc/s5Stefan Behnel2008-06-281-0/+3
|
* removed unused 'make version' target: there should be one place where the ↵Stefan Behnel2008-06-101-5/+0
| | | | version is updated
* 'make test3' target to build with the default python version and run the ↵Stefan Behnel2008-05-161-0/+4
| | | | tests against python3.0
* collection of regression tests (based on Greg's test suite)Stefan Behnel2007-12-311-0/+7
|
* buildfile changesRobert Bradshaw2007-09-071-1/+1
|
* More Pyrex/SageX --> Cython changesWilliam Stein2007-07-281-8/+2
|
* Initial versionWilliam Stein2007-07-281-0/+18