dvbackup/Makefile

15 lines
257 B
Makefile
Raw Normal View History

all: shellcheck test
2022-08-30 22:59:01 +02:00
shellcheck: shellcheck.log
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 $@
.PHONY: all shellcheck test install