blob: b61dcb6d4ccebb33d9b2684dd4ddecadf9205e97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# A makefile again just because typing "make" feels more comfortable
# than typing "./auto.sh"
.PHONY: % tomorrow
tomorrow:
sh ./auto.sh $(shell date -d tomorrow '+%Y-%m-%d')
%:
sh ./auto.sh $@
|