18 lines
370 B
Makefile
18 lines
370 B
Makefile
check:
|
|
bash -n update-kernel
|
|
bash -n remove-old-kernels
|
|
bash -n analyze-kmodules
|
|
bash -n bash_completion
|
|
shellcheck -x update-kernel remove-old-kernels analyze-kmodules
|
|
shellcheck -s bash bash_completion
|
|
|
|
docker-build:
|
|
docker build .
|
|
|
|
docker: docker-build
|
|
docker run --rm -it `docker images --format '{{.ID}}' | head -1`
|
|
|
|
test: check docker-build
|
|
|
|
.PHONY: check
|