From 7e842cfd399c0bea9d480d5fa7a18dfa06bb6a60 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 2 Jun 2011 23:19:42 -0400 Subject: This is what happens when I use Parabola for a day. --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6d28864..6d2921b 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,22 @@ CHECK = $(HOME)/.prefix:$(HOME):/usr/local:/usr:/ NANO_SHARE = $(firstword $(wildcard $(addsuffix /share/nano,$(subst :, ,$(CHECK))))) -all: .nanorc +targets=.nanorc .folders .crontab.cookie +all: $(targets) +clean: + rm -f $(targets) .nanorc: .nanorc.in $(NANO_SHARE) cat '$<' > '$@' for file in $(NANO_SHARE)/*.nanorc; do echo "include \"$$file\""; done >> '$@' +.folders: Maildir + find ~/Maildir -maxdepth 2 -type f -name "maildirfolder" -printf '%h\n'|sed -r 's@.*/(.*\.)(.*)@.\1\2@'>'$@' + +.crontab.cookie: .crontab .crontab.local + cat $^ | crontab + date > '$@' + commit: git commit -a -- cgit v1.2.3-54-g00ecf