summaryrefslogtreecommitdiffstats
path: root/func/minion/modules/netapp/Makefile
blob: 15750f7d819445ef18b7083c5e6ed20752764c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

PYFILES		= $(wildcard *.py)

PYCHECKER       = /usr/bin/pychecker
PYFLAKES	= /usr/bin/pyflakes

clean::
	@rm -fv *.pyc *~ .*~ *.pyo
	@find . -name .\#\* -exec rm -fv {} \;
	@rm -fv *.rpm
	-for d in $(DIRS); do ($(MAKE) -C $$d clean ); done

pychecker::
	@$(PYCHECKER) $(PYFILES) || exit 0

pyflakes::
	@$(PYFLAKES) $(PYFILES) || exit 0