21 lines
		
	
	
		
			224 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			224 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all:
 | 
						|
	python3 setup.py build
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf dist build py3x.egg-info
 | 
						|
 | 
						|
zip:
 | 
						|
	zip -r py3x * -i *.py py3x/*.py
 | 
						|
 | 
						|
html:
 | 
						|
	make -C docs html
 | 
						|
 | 
						|
pdf:
 | 
						|
	make -C docs latexpdf
 | 
						|
 | 
						|
tests:
 | 
						|
	py.test-3 tests
 | 
						|
 | 
						|
.PHONY: clean zip html pdf tests
 | 
						|
 |