2022-08-30 23:24:55 +02:00
|
|
|
all: shellcheck test
|
2022-08-30 22:59:01 +02:00
|
|
|
|
|
|
|
shellcheck: shellcheck.log
|
|
|
|
|
2022-08-30 23:24:55 +02:00
|
|
|
test:
|
|
|
|
./test/test.sh
|
|
|
|
|
|
|
|
install: dvbackup shellcheck test
|
2022-08-30 22:59:01 +02:00
|
|
|
install -Dm 0755 --owner=root --group=root $< /usr/local/bin/
|
|
|
|
|
|
|
|
shellcheck.log: dvbackup
|
|
|
|
shellcheck $< | tee $@
|
|
|
|
|
2022-08-30 23:24:55 +02:00
|
|
|
.PHONY: all shellcheck test install
|