File: Makefile

package info (click to toggle)
python-libevdev 0.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 340 kB
  • sloc: python: 2,310; makefile: 14
file content (10 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
all: doc test

doc:
	sphinx-apidoc -f -o doc/source libevdev
	sphinx-build -b html doc/source doc/html

test:
	PYTHONPATH=. pytest-3 test/*.py

.PHONY: doc test