File: Makefile

package info (click to toggle)
python-iow 1.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 584 kB
  • sloc: python: 2,308; makefile: 24
file content (15 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
libbitarr.a: 
	cd BitArray && $(MAKE)
	make -C BitArray -f Makefile

build: libbitarr.a
	python setup.py build_ext --inplace

test: build
	python -c "from bp._binary_tree import test_binary_tree; test_binary_tree()"
	python cdef_bp_tests.py
	nosetests

clean:
	rm -fr bp/*.so bp/*.c
	rm -fr build