File: Makefile

package info (click to toggle)
cython 0.12.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,312 kB
  • ctags: 6,879
  • sloc: python: 29,026; xml: 1,031; makefile: 126; ansic: 111
file content (46 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
PYTHON?=python
REPO = http://hg.cython.org/cython-devel

all:    local 

local:
	${PYTHON} setup.py build_ext --inplace

.hg: REV := $(shell cat .hgrev)
.hg: TMPDIR := $(shell mktemp -d tmprepo.XXXXXX)
.hg: 
	hg clone --rev $(REV) $(REPO) $(TMPDIR)
	hg -R $(TMPDIR) update
	mv $(TMPDIR)/.hg .
	mv $(TMPDIR)/.hgignore .
	mv $(TMPDIR)/.hgtags .
	rm -rf $(TMPDIR)

repo: .hg


clean:
	@echo Cleaning Source
	@rm -fr build
	@rm -f *.pyc */*.pyc */*/*.pyc 
	@rm -f *.so */*.so */*/*.so 
	@rm -f *.pyd */*.pyd */*/*.pyd 
	@rm -f *~ */*~ */*/*~
	@rm -f core */core
	@rm -f Cython/Compiler/*.c
	@rm -f Cython/Plex/*.c
	@rm -f Cython/Runtime/refnanny.c
	@(cd Demos; $(MAKE) clean)

testclean:
	rm -fr BUILD

test:	testclean
	${PYTHON} runtests.py -vv

test3:	testclean
	${PYTHON} runtests.py --no-cleanup
	python3.0 runtests.py -vv --no-cython

s5:
	$(MAKE) -C Doc/s5 slides