summaryrefslogtreecommitdiff
path: root/.uzbl
diff options
context:
space:
mode:
Diffstat (limited to '.uzbl')
-rw-r--r--.uzbl/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/.uzbl/Makefile b/.uzbl/Makefile
new file mode 100644
index 0000000..1c45cec
--- /dev/null
+++ b/.uzbl/Makefile
@@ -0,0 +1,13 @@
+HOME=/home/urbain
+TARGETS=$(addprefix $(HOME)/,.config/uzbl .local/share/uzbl/bookmarks)
+
+all : $(TARGETS)
+
+$(HOME)/.config/uzbl :
+ rm -f $@ && ln -s $(PWD) $@
+
+$(HOME)/.local/share/uzbl/bookmarks :
+ rm -f $@ && ln -s $(PWD)/bookmarks $@
+
+clean :
+ rm -f $(TARGETS)