diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-09-16 15:38:58 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-09-16 15:38:58 +0100 |
commit | b920816216cb161449dcf03ffe964c667c7b36c2 (patch) | |
tree | 8f666cc88277df541e3364fbc45dcd63acd7a45e /.zathura/Makefile | |
parent | 63a9e763db248af694edc3755a288f2bfb73c834 (diff) |
Split install file
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) |