7 lines
141 B
Makefile
7 lines
141 B
Makefile
|
SOURCES := $(shell cd ./src && find ./ -type f -and -not -name '*.vars')
|
||
|
|
||
|
shellcheck:
|
||
|
cd ./src && shellcheck ${SOURCES}
|
||
|
|
||
|
.PHONY: shellcheck
|