10 lines
128 B
Makefile
10 lines
128 B
Makefile
|
all: lint
|
||
|
|
||
|
include ../tools/python.mk
|
||
|
|
||
|
PIP_INSTALL := --editable .[dev]
|
||
|
PYLINT_ARG := libretimeapi
|
||
|
|
||
|
lint: .pylint
|
||
|
clean: .clean
|