diff options
Diffstat (limited to '.zathura/Makefile')
-rw-r--r-- | .zathura/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.zathura/Makefile b/.zathura/Makefile new file mode 100644 index 0000000..e8c3e11 --- /dev/null +++ b/.zathura/Makefile @@ -0,0 +1,10 @@ +HOME=/home/urbain +TARGET=$(HOME)/.config/zathura/zathurarc + +all : $(TARGETS) + +$(HOME)/.config/zathura/zathurarc : + rm -f $@ && ln -s $(PWD)/zathurarc $@ + +clean : + rm -f $(TARGET) |