X-Git-Url: https://git.madduck.net/etc/crontab.git/blobdiff_plain/50e72509a87b726c3665ab8ae0269d462acbecc8..c81cb5506f1ae56350f98ac6f09fbb6216fa5e86:/.crontab.d/Makefile?ds=inline diff --git a/.crontab.d/Makefile b/.crontab.d/Makefile new file mode 100644 index 0000000..de73d90 --- /dev/null +++ b/.crontab.d/Makefile @@ -0,0 +1,13 @@ +SHELL = /bin/zsh + +CRONTAB: $(shell setopt extended_glob && echo base *~base~CRONTAB~Makefile~.gitignore) + for f in $^; do \ + echo "### from file '$$f'"; \ + cat $$f; \ + echo; \ + done > $@ + crontab - < $@ + +clean: + rm -f CRONTAB +.PHONY: clean