mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 14:03:40 +00:00
17 lines
255 B
Makefile
17 lines
255 B
Makefile
export PYTHONPATH =: .
|
|
|
|
SETTINGS = export DJANGO_SETTINGS_MODULE=scrapyorg.settings
|
|
|
|
.PHONY : all build docs tests
|
|
|
|
all : build tests
|
|
|
|
build : docs
|
|
|
|
docs :
|
|
sphinx-build -a -b pickle docs/sources docs/pickle
|
|
|
|
tests :
|
|
$(SETTINGS); \
|
|
django-admin.py test
|