commit facd5124c3522418c2445b312284456579f263a6
parent fa71ca185b59e5a9da9083dd0da0b6b29bf4a8b4
Author: Vincent Demeester <vincent@sbr.pm>
Date: Mon, 6 Apr 2020 20:47:44 +0200
Makefile: add dotgnus setup 😛
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -7,6 +7,7 @@ EMACS = "emacs"
endif
DOTEMACS = ~/.config/emacs
+DOTGNUS = ~/.config/gnus
DOTNIXPKGS = ~/.config/nixpkgs
ETCNIXOS = /etc/nixos
SYNCDIR = ~/sync/nixos
@@ -87,12 +88,16 @@ doctor:
@readlink $(DOTNIXPKGS) || $(error $(DOTNIXPKGS) is not correctly linked, you may need to run setup)
.PHONY: setup
-setup: $(DOTEMACS) $(DOTNIXPKGS) $(ETCNIXOS) $(SYNCDIR)
+setup: $(DOTEMACS) $(DOTGNUS) $(DOTNIXPKGS) $(ETCNIXOS) $(SYNCDIR)
$(DOTEMACS):
@echo "Link $(DOTEMACS) to $(CURDIR)/tools/emacs"
@ln -s $(CURDIR)/tools/emacs $(DOTEMACS)
+$(DOTGNUS):
+ @echo "Link $(DOTGNUs) to $(CURDIR)/tools/gnus"
+ @ln -s $(CURDIR)/tools/gnus $(DOTGNUS)
+
$(DOTNIXPKGS):
@echo "Link $(DOTNIXPKGS) to $(CURDIR)"
@ln -s $(CURDIR) $(DOTNIXPKGS)