mirror of https://github.com/Yomguithereal/fog.git
13 lines
148 B
Makefile
13 lines
148 B
Makefile
|
# Variables
|
||
|
SOURCE = fog
|
||
|
|
||
|
# Commands
|
||
|
all: lint
|
||
|
|
||
|
# test: test-unittest
|
||
|
|
||
|
lint:
|
||
|
@echo Linting source code using pep8...
|
||
|
pycodestyle $(SOURCE)
|
||
|
@echo
|