File: Makefile

package info (click to toggle)
python-fixtures 1.3.1-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 340 kB
  • sloc: python: 1,881; makefile: 34
file content (17 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PYTHON ?= python

all: check

check:
	$(PYTHON) -m testtools.run fixtures.test_suite

clean:
	find . -name '*.pyc' -print0 | xargs -0 rm -f

TAGS: fixtures/*.py fixtures/tests/*.py
	ctags -e -R fixtures/

tags: fixtures/*.py fixtures/tests/*.py
	ctags -R fixtures/

.PHONY: all check clean