Project

General

Profile

Revision 7b81cb66

ID7b81cb6627334865a5757cdc5a2ca7fe2196f2ac
Parent acb87a14
Child c541cd24

Added by Aurelien BOMPARD almost 15 years ago

Nettoyages divers

git-svn-id: https://vigilo-dev.si.c-s.fr/svn@320 b22e2e97-25c9-44ff-b637-2e5ceca36478

View differences:

Makefile
1
NAME = 
1
NAME = vigiboard
2 2

  
3 3
all: bin/python
4 4
	@echo "Template Makefile, to be filled with build and install targets"
......
17 17
	rm -rf eggs develop-eggs parts .installed.cfg bin
18 18

  
19 19
apidoc: doc/apidoc/index.html
20
doc/apidoc/index.html: src/vigilo
20
doc/apidoc/index.html: $(NAME)
21 21
	rm -rf $(CURDIR)/doc/apidoc/*
22 22
	PYTHONPATH=src epydoc -o $(dir $@) -v \
23 23
		   --name Vigilo --url http://www.projet-vigilo.org \
24 24
		   --docformat=epytext $^
25 25

  
26
lint: bin/python
27
	./bin/python "$$(which pylint)" --rcfile=extra/pylintrc src/vigilo
26
lint:
27
	./pylint_vigiboard.py $(NAME)
28 28

  
29 29
tests:
30
	nosetests --with-coverage --cover-inclusive --cover-erase --cover-package vigilo tests
30
	nosetests --with-coverage --cover-inclusive --cover-erase --cover-package $(NAME) tests
31 31

  
32 32

  
33 33
.PHONY: all clean buildclean apidoc lint tests

Also available in: Unified diff