aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 53fe206147ea4a885f60f7f5692f8dd46361614b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
install: ${HOME}/.config ${HOME}/bin
	rsync -r hypr/ ${HOME}/.config/hypr/
	rsync -r tmux/ ${HOME}/.config/tmux/
	rsync -r vim/ ${HOME}/.config/vim/
	rsync -a bin/ ${HOME}/bin/

${HOME}/bin:
	mkdir ${HOME}/bin

${HOME}/.config:
	mkdir ${HOME}/.config

.PHONY: install