File: Makefile

package info (click to toggle)
django-openid-auth 0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 556 kB
  • sloc: python: 2,062; makefile: 21
file content (10 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10

check:
	PYTHONPATH=$(shell pwd) python example_consumer/manage.py test \
	   --verbosity=2 django_openid_auth

run-example-consumer:
	PYTHONPATH=$(shell pwd) python example_consumer/manage.py syncdb
	PYTHONPATH=$(shell pwd) python example_consumer/manage.py runserver

.PHONY: check run-example-consumer